1+ /*
2+ * Copyright 1998-2026 Linux.org.ru
3+ * Licensed under the Apache License, Version 2.0 (the "License");
4+ * you may not use this file except in compliance with the License.
5+ * You may obtain a copy of the License at
6+ *
7+ * http://www.apache.org/licenses/LICENSE-2.0
8+ *
9+ * Unless required by applicable law or agreed to in writing, software
10+ * distributed under the License is distributed on an "AS IS" BASIS,
11+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ * See the License for the specific language governing permissions and
13+ * limitations under the License.
14+ */
15+
16+ @use " sass:color" ;
17+
18+ $heatmap_max : #73d216 ;
19+ $heatmap_scale : 1.5 ;
20+
21+ @media (prefers-color-scheme : light ) {
22+ :root {
23+ --main-background : #d3d7cf ;
24+ --text-color : #3b4245 ;
25+ --link-color : #204a87 ;
26+ --site-title-color : #171b1c ;
27+ --header-color : #232829 ;
28+ --blockquote-color : #555753 ;
29+ --table-border-color : #babdb6 ;
30+ --table-link-color : #171b1c ;
31+ --table-hover-background : #ad7fa8 ;
32+ --tag-color : #ce5c00 ;
33+ --main-menu-color : #8f5902 ;
34+ --signature-user-color : #4e9a06 ;
35+ --signature-remark-color : #444444 ;
36+ --article-background : #eeeeec ;
37+ --button-border-color : #171b1c ;
38+ --button-selected-text-color : white ;
39+ --button-primary-background : #729fcf ;
40+ --button-danger-background : #cc0000 ;
41+ --button-danger-text-color : #d3d7cf ;
42+ --icon-button-active-color : #c17d11 ;
43+ --tagpage-group-label-background : #e9b96e ;
44+ --icon-reply-color : #729fcf ;
45+ --unread-marker-color : #3465a4 ;
46+ --icon-pin-color : #c4a000 ;
47+ --preview-border-color : #c4a000 ;
48+
49+ --heatmap-empty : #babdb6 ;
50+ --heatmap-max : #{color .adjust ($heatmap_max , $lightness : -20% * $heatmap_scale )} ;
51+ --heatmap-q4 : #{color .adjust ($heatmap_max , $lightness : -15% * $heatmap_scale )} ;
52+ --heatmap-q3 : #{color .adjust ($heatmap_max , $lightness : -10% * $heatmap_scale )} ;
53+ --heatmap-q2 : #{color .adjust ($heatmap_max , $lightness : -5% * $heatmap_scale )} ;
54+ --heatmap-q1 : #{$heatmap_max } ;
55+
56+ .swiffy-slider {
57+ --swiffy-slider-nav-light : #171b1c ;
58+ }
59+
60+ .swiffy-slider .slider-indicators >* {
61+ filter : invert (1 );
62+ }
63+ /*
64+
65+ Atom One Light by Daniel Gamage
66+ Original One Light Syntax theme from https://github.com/atom/one-light-syntax
67+
68+ base: #fafafa
69+ mono-1: #383a42
70+ mono-2: #686b77
71+ mono-3: #a0a1a7
72+ hue-1: #0184bb
73+ hue-2: #4078f2
74+ hue-3: #a626a4
75+ hue-4: #50a14f
76+ hue-5: #e45649
77+ hue-5-2: #c91243
78+ hue-6: #986801
79+ hue-6-2: #c18401
80+
81+ */
82+ --syntax-mono-1 : #383a42 ;
83+ --syntax-mono-3 : #a0a1a7 ;
84+ --syntax-hue-1 : #0184bb ;
85+ --syntax-hue-2 : #4078f2 ;
86+ --syntax-hue-3 : #a626a4 ;
87+ --syntax-hue-4 : #50a14f ;
88+ --syntax-hue-5 : #e45649 ;
89+ --syntax-hue-6 : #986801 ;
90+ --syntax-hue-6-2 : #c18401 ;
91+ }
92+ }
0 commit comments