-
Notifications
You must be signed in to change notification settings - Fork 2
/
truecolor.fnl
30 lines (28 loc) · 1.12 KB
/
truecolor.fnl
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
;;; ╭──────────────────────────────────────────────────────────╮
;;; │ Main Colors (24-bit, true-color) │
;;; ╰──────────────────────────────────────────────────────────╯
;;;
;;; Colors must be acceptable (gui)fg or (gui)bg value. (see `:help gui-colors`)
(import-macros {: color-table-validate/truecolor} :colors-table)
(color-table-validate/truecolor
{:red :#ff5370
:light_red :#ff869a
:dark_red :#be5046
:green :#c3e88d
:dark_green :#a2db4f
:yellow :#ffcb6b
:orange :#f78c6c
:blue :#82b1ff
:purple :#c792ea
:blue_purple :#939ede
:cyan :#89ddff
:white :#bfc7d5
:black :#292d3e
;; Special colors
:special :#717cb4
:comment :#697098
:line_number :#4b5263
:highlight :#3e4452
:menu :#363a4c
:cursor :#2c323c
:vertsplit :#181a1f})