aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/themes.scss
blob: a30f1de33e007f7e357800cabf1b658dfd38f471 (plain) (blame)
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
$themes: (
  'dark': (
    'foreground': #abb2bf,
    'foregroundHighlight': #eeffff,
    'background': #212121,
    'primary': #56b6c2,
    'secondary': #ff5370,
    'keyword': #56b6c2,
    'predicate': #d6e9ff,
    'variable': #c8ae9d,
    'uniqueNode': #d6e9ff,
    'number': #6e88a6,
    'delimiter': #707787,
    'comment': #5c6370,
    'cursor': #56b6c2,
    'selection': #3e4452,
    'currentLine': rgba(0, 0, 0, 0.2),
    'lineNumber': #5c6370,
  ),
  'light': (
    'foreground': #abb2bf,
    'background': #282c34,
    'paper': #21252b,
    'primary': #56b6c2,
    'secondary': #ff5370,
    'keyword': #56b6c2,
    'predicate': #d6e9ff,
    'variable': #c8ae9d,
    'uniqueNode': #d6e9ff,
    'number': #6e88a6,
    'delimiter': #56606d,
    'comment': #55606d,
    'cursor': #f3efe7,
    'selection': #3e4452,
    'currentLine': #2c323c,
    'lineNumber': #5c6370,
  ),
);