-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.scss
103 lines (91 loc) · 2.28 KB
/
default.scss
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// @import "/home/kip/.cache/wal/colors.scss";
@import "colors.scss";
// check "INFO" tags in file when applying to colorcheme
// It's filter adjasment most of time (like hue rotate)
// check "FUNNY" tags for things I can't understand (you might let me know how
// why it's done so)
$main-background-color: $color0;
$background-dark: darken($main-background-color, 5%);
/* used to separate sections from each other (like borders) */
$background-light: lighten($main-background-color, 18%);
$light: $color15;
$grey: lighten($color8, 00%);
// in this file will be use as MAIN COLOR
$link-color: $color2;
$stress1: $color1; /* current opened tab in repository */
$stress2: $color9; /* hi last commiter name */
$stress3: $color12;
$stress4: $color2;
$stress5: $color10;
$stress_sec1: darken($stress1, 35%);
$stress_sec2: darken($stress2, 35%);
$stress_sec3: darken($stress3, 35%);
$stress_sec4: darken($stress4, 35%);
$stress_sec5: darken($stress5, 35%);
/* color when you need to emphasize some section (neighter it's button
* or heading to something */
// $section-emph-border: lighten($color1, 5%);
$section-emph-border: lighten($color11, 0%);
$section-emph-background: darken($color11, 55%);
$button-emph-background: darken($stress3, 35%);
$button-emph-border: $stress3;
$sel-background: darken($color8, 25%);
$button-border-hover: #8d969e;
$debug: #7a5178;
body
{
background: $main-background-color !important;
color: $light !important;
// usually header
h1,h2,h3,h4,h5,h6
{
color: $light !important;
}
// usually code
code,
pre
{
background: $background-dark !important;
border-color: $background-light !important;
color: $light !important;
}
// emphasized text
strong, em
{
color: lighten($light, 5%) !important;
}
}
// usually bottom of page
footer
{
p
{
color: $grey !important;
}
}
a
{
border-color: $background-light !important;
text-decoration: none !important;
&:link
{
color: $stress2 !important;
}
&:hover,
&:active
{
border-color: $button-border-hover !important;
color: lighten($stress2,10%) !important;
}
&:visited
{
color: $link-color !important;
}
}
table
{
thead
{
color: $link-color;
}
}