/usr/share/highlight/themes/edit-purebasic.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 | --[[******************************************************************************
* *
* PureBASIC Theme *
* *
* v1.0 - 2016/10/27 *
* *
******************************************************************************
This theme emulates the native PureBASIC IDE color scheme.
Written by Tristano Ajmone <tajmone@gmail.com>
https://github.com/tajmone
Released into the public domain according to the Unlicense licsense:
http://unlicense.org/
]]
Description = "PureBASIC"
Canvas = { Colour="#FFFFDF" } -- "Half and Half"
Default = { Colour="#000000" } -- "Black"
Number = Default
Operator = Default
String = { Colour="#0080FF" } -- "Azure Radiance"
Escape = String
StringPreProc = Escape
Interpolation = Escape
LineComment = { Colour="#00AAAA" } -- "Persian Green/Tradewind"
BlockComment = LineComment
LineNum = { Colour="#808080" } -- "Gray"
PreProcessor = { Colour="#924B72" } -- not used by PureBASIC syntax
Keywords = {
{ Colour="#006666" , Bold=true }, -- "Blue Stone" (PB Keywords)
{ Colour="#924B72" }, -- "Cannon Pink" (constants)
{ Colour="#006666" }, -- "Blue Stone" (Procedure calls)
String -- (Escaped-Strings Prefix "~")
}
|