-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.ini
35 lines (31 loc) · 1.19 KB
/
theme.ini
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
; Default theme for the Algorithmic Editor.
; Author : megat69/TheAssassin71
[COLORS]
; Here should be written the different color of each pair
; Each pair of color is composed of foreground, background
; The colors must be colors made available by the curses library
; The colors must be strings
; Available options are : BLACK, BLUE, CYAN, GREEN, MAGENTA, RED, WHITE, YELLOW
; You can write up to 9 pairs, ranging from pair_1 to pair_9, and they should be named accordingly
pair_1 = RED, def
pair_2 = BLUE, def
pair_3 = YELLOW, def
pair_4 = CYAN, def
pair_5 = GREEN, def
[PAIRS]
; Here should be attributed a pair to each syntax highlighting type
; You should not modify the part on the left of the equals sign
; The value at the right of the equals sign must be an integer corresponding to a color pair you created above
statement = 1
function = 2
variable = 3
instruction = 4
strings = 3
special_string = 5
[SCHEME]
; Here should be written whether the theme is dark or light, as such : LIGHT, DARK
scheme = DARK
; Here should be written the background and foreground colors of the theme, with the available options
; from the COLORS section.
default_bg = BLACK
default_fg = WHITE