-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault
More file actions
43 lines (40 loc) · 2.16 KB
/
Copy pathdefault
File metadata and controls
43 lines (40 loc) · 2.16 KB
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
[gtcaca_theme]
# cacamacs' default theme.
#
# One file, read by two parsers, each taking the half it owns:
#
# <widget>_bg / <widget>_fg the window chrome — read by gtcaca, layered
# over gtcaca's own themes/default, so only the
# colours that differ need naming here.
# everything else the editing surface and syntax colours — read
# by cacamacs (src/theme.c).
#
# ~/.cacamacs/theme is applied over this one in exactly the same way, so a
# personal theme only has to name what it changes. Keep the [gtcaca_theme]
# header on the first line: gtcaca needs it, and cacamacs ignores it.
#
# Chrome colours are the 16 terminal names: black blue green cyan red magenta
# brown lightgray darkgray lightblue lightgreen lightcyan lightred
# lightmagenta yellow white. The cacamacs half additionally takes #rrggbb,
# #rgb and rgb(r,g,b), rendered in up to 4096 colours where the terminal
# allows and falling back to the nearest of the 16 where it does not.
# ── the editing surface ─────────────────────────────────────────────────────
# background/foreground also set gtcaca's textview pair, so the editor looks
# the same focused or not — focus is shown by the cursor, not a background tint.
background = #1e1a2e # a dark purple
foreground = #d0d0e0
current_line = #2a2440 # highlight on the caret's line
selection_fg = black
selection_bg = #4a4a80
# ── syntax colours ──────────────────────────────────────────────────────────
comment = #6a7a6a
string = #98c878
number = #80d0d0
keyword = #c890f0
bracket = #e0e0a0
operator = #b0b0c0
# ── window chrome (gtcaca's half) ───────────────────────────────────────────
# Uncomment to move away from gtcaca's blue-desktop defaults, e.g.
# statusbar_bg = blue
# statusbar_fg = white
# windowfocus_fg = yellow