|
1 | 1 | .comment { |
| 2 | + color: #5e7e85; |
2 | 3 | /* Subtle gray for comments */ |
3 | | - color: #727169; |
4 | 4 | } |
5 | 5 |
|
6 | 6 | .embedded { |
| 7 | + color: #b88b00; |
7 | 8 | /* Warm yellowish tone for embedded code */ |
8 | | - color: #dca561; |
9 | 9 | } |
10 | 10 |
|
11 | 11 | .escape { |
| 12 | + color: #b85f5f; |
12 | 13 | /* Reddish for escape characters */ |
13 | | - color: #c34043; |
14 | 14 | } |
15 | 15 |
|
16 | 16 | .function { |
| 17 | + color: #4c8cff; |
17 | 18 | /* Soft blue for function names */ |
18 | | - color: #7e9cd8; |
19 | 19 | } |
20 | 20 |
|
21 | 21 | .function-builtin { |
| 22 | + color: #ff8f00; |
22 | 23 | /* Orange for built-in functions */ |
23 | | - color: #ff9e3b; |
24 | 24 | } |
25 | 25 |
|
26 | 26 | .keyword { |
| 27 | + color: #d19a66; |
27 | 28 | /* Bright yellow/orange for keywords */ |
28 | | - color: #ffa066; |
29 | 29 | font-weight: bold; |
30 | 30 | } |
31 | 31 |
|
32 | 32 | .number { |
| 33 | + color: #e06c75; |
33 | 34 | /* Reddish for numbers */ |
34 | | - color: #ff5d62; |
35 | 35 | } |
36 | 36 |
|
37 | 37 | .operator { |
| 38 | + color: #d55fde; |
38 | 39 | /* Pinkish-red for operators */ |
39 | | - color: #e46876; |
40 | 40 | } |
41 | 41 |
|
42 | 42 | .property { |
| 43 | + color: #b88b00; |
43 | 44 | /* Golden yellow for properties */ |
44 | | - color: #dca561; |
45 | 45 | } |
46 | 46 |
|
47 | 47 | .punctuation-bracket { |
| 48 | + color: #a39eeb; |
48 | 49 | /* Purplish tone for brackets */ |
49 | | - color: #a093c7; |
50 | 50 | } |
51 | 51 |
|
52 | 52 | .punctuation-delimiter { |
53 | | - /* Neutral beige for punctuation */ |
54 | 53 | color: #c8c093; |
| 54 | + /* Neutral beige for punctuation */ |
55 | 55 | } |
56 | 56 |
|
57 | 57 | .punctuation-special { |
58 | | - /* Light ivory for special punctuation */ |
59 | 58 | color: #e2d3ba; |
| 59 | + /* Light ivory for special punctuation */ |
60 | 60 | } |
61 | 61 |
|
62 | 62 | .string { |
| 63 | + color: #50b482; |
63 | 64 | /* Green for strings */ |
64 | | - color: #98bb6c; |
65 | 65 | } |
66 | 66 |
|
67 | 67 | .string-special-path { |
| 68 | + color: #d19a66; |
68 | 69 | /* Orange for special strings (path) */ |
69 | | - color: #ffa066; |
70 | 70 | } |
71 | 71 |
|
72 | 72 | .string-special-uri { |
| 73 | + color: #ff8f00; |
73 | 74 | /* Bright orange for URIs */ |
74 | | - color: #ff9e3b; |
75 | 75 | } |
76 | 76 |
|
77 | 77 | .variable { |
| 78 | + color: #b88b00; |
78 | 79 | /* Neutral white for variables */ |
79 | | - color: #dca561; |
80 | | - //color: #dcd7ba; |
81 | 80 | } |
82 | 81 |
|
83 | 82 | .variable-builtin { |
| 83 | + color: #ff8f00; |
84 | 84 | /* Bright orange for built-in variables */ |
85 | | - color: #ff9e3b; |
86 | 85 | } |
87 | 86 |
|
88 | 87 | .variable-parameter { |
| 88 | + color: #4c8cff; |
89 | 89 | /* Soft blue for function parameters */ |
90 | | - color: #7e9cd8; |
| 90 | +} |
| 91 | + |
| 92 | +@media (prefers-color-scheme: dark) { |
| 93 | + .comment { |
| 94 | + /* Subtle gray for comments */ |
| 95 | + color: #727169; |
| 96 | + } |
| 97 | + |
| 98 | + .embedded { |
| 99 | + /* Warm yellowish tone for embedded code */ |
| 100 | + color: #dca561; |
| 101 | + } |
| 102 | + |
| 103 | + .escape { |
| 104 | + /* Reddish for escape characters */ |
| 105 | + color: #c34043; |
| 106 | + } |
| 107 | + |
| 108 | + .function { |
| 109 | + /* Soft blue for function names */ |
| 110 | + color: #7e9cd8; |
| 111 | + } |
| 112 | + |
| 113 | + .function-builtin { |
| 114 | + /* Orange for built-in functions */ |
| 115 | + color: #ff9e3b; |
| 116 | + } |
| 117 | + |
| 118 | + .keyword { |
| 119 | + /* Bright yellow/orange for keywords */ |
| 120 | + color: #ffa066; |
| 121 | + font-weight: bold; |
| 122 | + } |
| 123 | + |
| 124 | + .number { |
| 125 | + /* Reddish for numbers */ |
| 126 | + color: #ff5d62; |
| 127 | + } |
| 128 | + |
| 129 | + .operator { |
| 130 | + /* Pinkish-red for operators */ |
| 131 | + color: #e46876; |
| 132 | + } |
| 133 | + |
| 134 | + .property { |
| 135 | + /* Golden yellow for properties */ |
| 136 | + color: #dca561; |
| 137 | + } |
| 138 | + |
| 139 | + .punctuation-bracket { |
| 140 | + /* Purplish tone for brackets */ |
| 141 | + color: #a093c7; |
| 142 | + } |
| 143 | + |
| 144 | + .punctuation-delimiter { |
| 145 | + /* Neutral beige for punctuation */ |
| 146 | + color: #c8c093; |
| 147 | + } |
| 148 | + |
| 149 | + .punctuation-special { |
| 150 | + /* Light ivory for special punctuation */ |
| 151 | + color: #e2d3ba; |
| 152 | + } |
| 153 | + |
| 154 | + .string { |
| 155 | + /* Green for strings */ |
| 156 | + color: #98bb6c; |
| 157 | + } |
| 158 | + |
| 159 | + .string-special-path { |
| 160 | + /* Orange for special strings (path) */ |
| 161 | + color: #ffa066; |
| 162 | + } |
| 163 | + |
| 164 | + .string-special-uri { |
| 165 | + /* Bright orange for URIs */ |
| 166 | + color: #ff9e3b; |
| 167 | + } |
| 168 | + |
| 169 | + .variable { |
| 170 | + /* Neutral white for variables */ |
| 171 | + color: #dca561; |
| 172 | + //color: #dcd7ba; |
| 173 | + } |
| 174 | + |
| 175 | + .variable-builtin { |
| 176 | + /* Bright orange for built-in variables */ |
| 177 | + color: #ff9e3b; |
| 178 | + } |
| 179 | + |
| 180 | + .variable-parameter { |
| 181 | + /* Soft blue for function parameters */ |
| 182 | + color: #7e9cd8; |
| 183 | + } |
91 | 184 | } |
0 commit comments