/usr/share/highlight/themes/edit-godot.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 | --[[******************************************************************************
* *
* Godot Theme *
* *
* v1.0 - 2017/02/16 *
* *
******************************************************************************
This theme mimicks the native GDScript color scheme of Godot Engine's IDE:
https://godotengine.org/
------------------------------------------------------------------------------
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/gdscript-highlight
------------------------------------------------------------------------------
]]
Description = "Godot Engine"
Canvas = { Colour="#222026" } -- ("Baltic Sea" Black)
Default = { Colour="#AAAAAA" } -- ("Silver Chalice" Grey)
Number = { Colour="#EB9531" } -- ("Carrot Orange")
Operator = { Colour="#BADFFF" } -- ("Tropical Blue")
String = { Colour="#EF6EBD" } -- ("Hot Pink")
Escape = String
StringPreProc = String
Interpolation = String
LineComment = { Colour="#973D1A" } -- ("Cumin" Red)
BlockComment = LineComment
LineNum = { Colour="#58575B" } -- ("Abbey" Grey)
PreProcessor = { Colour="#7B5DBD" } -- ("Fuchsia Blue")
Keywords = {
{ Colour="#FFFFB3" }, -- ("Portafino" Yellow)
{ Colour="#A3FFD4" }, -- ("Aquamarine" Green)
{ Colour="#66A1CD" }, -- ("Danube" Blue)
{ Colour="#E64D59" }, -- ("Mandy" Red)
}
--[[==============================================================================
CHANGELOG
==============================================================================
v1.0 (2017/02/16)
-- First release.
-- Godot Engine 2.1.2.
]]
|