/usr/share/highlight/themes/edit-fasm.theme is in highlight-common 3.41-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | --[[ "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 <tajmone@gmail.com>
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).
]]
|