--[[ "edit-fasm.theme" ****************************************************************************** * * * FASM Theme * * * * v1.0 - 2017/03/14 * * * ****************************************************************************** This theme mimicks the native color scheme of Flat assembler's editor: https://flatassembler.net Color names calculated using Name That Color (NTC) foss CLI tool: https://github.com/tajmone/name-that-color ------------------------------------------------------------------------------ Written by Tristano Ajmone https://github.com/tajmone Released into the public domain according to the Unlicense licsense: http://unlicense.org/ ------------------------------------------------------------------------------ Project repository: https://github.com/tajmone/fasm-highlighting ------------------------------------------------------------------------------ ]] Description = "FASM Editor" Canvas = { Colour="#FFFFFF" } -- "White" Default = { Colour="#000000" } -- "Black" Number = { Colour="#009000" } -- "Forest Green" Operator = { Colour="#3030F0" } -- "Blue" String = { Colour="#B00000" } -- "Bright Red" Escape = String StringPreProc = String Interpolation = String LineComment = { Colour="#808080" } -- "Gray" BlockComment = LineComment LineNum = { Colour="#0078D7" } -- "Lochmara" blue (in FASM IDE: Selection BG) PreProcessor = Operator -- (not used by FASM syntax) Keywords = { Default, -- REGISTERS Default, -- INSTRUCTIONS Default, -- LABELS Default, -- DIRECTIVES } --[[ ============================================================================== CHANGELOG ============================================================================== v1.0 (2017/03/14) -- First release. -- Flat Assembler v1.71.60 (2017/03/04). -- Highlight v3.35 (2017/02/28). ]]