@loftyshaky/shared 2.3.0 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_locales/en/messages.json +8 -2
- package/_locales/ru/messages.json +8 -2
- package/chunk-title.js +1 -1
- package/js/webpack.config.js +3 -1
- package/package.json +1 -1
- package/scss/settings/ext_version.scss +7 -7
- package/scss/settings/main.scss +18 -18
- package/scss/settings/sections.scss +45 -45
- package/scss/shared/help.scss +69 -69
- package/scss/shared/themes/colors/aqua.scss +32 -34
- package/scss/shared/themes/colors/clover.scss +46 -0
- package/scss/shared/themes/colors/dark.scss +2 -1
- package/scss/shared/themes/colors/lavender.scss +19 -23
- package/scss/shared/themes/colors/light.scss +5 -4
- package/scss/shared/themes/colors/ruby.scss +46 -0
- package/scss/shared/themes/colors/very_dark.scss +2 -1
- package/scss/shared/themes/general/clover_theme.scss +9 -0
- package/scss/shared/themes/general/dark_theme.scss +9 -9
- package/scss/shared/themes/general/light_theme.scss +9 -9
- package/scss/shared/themes/general/ruby_theme.scss +9 -0
- package/scss/shared/themes/general/template.scss +1 -1
- package/scss/shared/themes/general/very_dark_theme.scss +9 -9
- package/scss/shared/vars.scss +32 -32
package/js/webpack.config.js
CHANGED
|
@@ -115,8 +115,10 @@ const shared_config = ({
|
|
|
115
115
|
light_theme: path.join(paths.themes, 'light_theme.scss'),
|
|
116
116
|
dark_theme: path.join(paths.themes, 'dark_theme.scss'),
|
|
117
117
|
very_dark_theme: path.join(paths.themes, 'very_dark_theme.scss'),
|
|
118
|
-
|
|
118
|
+
clover_theme: path.join(paths.themes, 'clover_theme.scss'),
|
|
119
119
|
aqua_theme: path.join(paths.themes, 'aqua_theme.scss'),
|
|
120
|
+
lavender_theme: path.join(paths.themes, 'lavender_theme.scss'),
|
|
121
|
+
ruby_theme: path.join(paths.themes, 'ruby_theme.scss'),
|
|
120
122
|
},
|
|
121
123
|
output: {
|
|
122
124
|
filename: '[name].js',
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
.ext_version {
|
|
2
|
-
position: relative;
|
|
3
|
-
bottom: -10px;
|
|
4
|
-
right: -26px;
|
|
5
|
-
float: right;
|
|
6
|
-
font-size: 14px;
|
|
7
|
-
}
|
|
1
|
+
.ext_version {
|
|
2
|
+
position: relative;
|
|
3
|
+
bottom: -10px;
|
|
4
|
+
right: -26px;
|
|
5
|
+
float: right;
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
}
|
package/scss/settings/main.scss
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
html,
|
|
2
|
-
.body {
|
|
3
|
-
height: 100%;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.main {
|
|
7
|
-
padding: $main_margin_2;
|
|
8
|
-
padding-left: $main_margin_2;
|
|
9
|
-
display: block;
|
|
10
|
-
height: calc(100vh - #{$main_margin_4});
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.main_2 {
|
|
14
|
-
display: flex;
|
|
15
|
-
height: calc(100vh - $main_margin_4);
|
|
16
|
-
max-width: 1366px - $main_margin_2 + 2px;
|
|
17
|
-
margin: auto;
|
|
18
|
-
}
|
|
1
|
+
html,
|
|
2
|
+
.body {
|
|
3
|
+
height: 100%;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.main {
|
|
7
|
+
padding: $main_margin_2;
|
|
8
|
+
padding-left: $main_margin_2;
|
|
9
|
+
display: block;
|
|
10
|
+
height: calc(100vh - #{$main_margin_4});
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.main_2 {
|
|
14
|
+
display: flex;
|
|
15
|
+
height: calc(100vh - $main_margin_4);
|
|
16
|
+
max-width: 1366px - $main_margin_2 + 2px;
|
|
17
|
+
margin: auto;
|
|
18
|
+
}
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
.sections_and_offers {
|
|
2
|
-
width: 100%;
|
|
3
|
-
display: flex;
|
|
4
|
-
flex-direction: column;
|
|
5
|
-
overflow: hidden;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.sections {
|
|
9
|
-
flex-grow: 1;
|
|
10
|
-
height: 100%;
|
|
11
|
-
overflow: auto;
|
|
12
|
-
outline: none;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.section {
|
|
16
|
-
margin: $main_margin;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.offers {
|
|
20
|
-
@include border_top;
|
|
21
|
-
|
|
22
|
-
order: 1;
|
|
23
|
-
|
|
24
|
-
.offers_inner {
|
|
25
|
-
margin: $main_margin;
|
|
26
|
-
margin-top: $gap;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
+ .sections .section {
|
|
30
|
-
margin-bottom: $gap;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.subsection {
|
|
35
|
-
.name {
|
|
36
|
-
margin: 0;
|
|
37
|
-
font-weight: bold;
|
|
38
|
-
font-size: unset;
|
|
39
|
-
text-decoration: underline;
|
|
40
|
-
|
|
41
|
-
&:not(:first-child) {
|
|
42
|
-
margin-top: $main_margin;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
1
|
+
.sections_and_offers {
|
|
2
|
+
width: 100%;
|
|
3
|
+
display: flex;
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.sections {
|
|
9
|
+
flex-grow: 1;
|
|
10
|
+
height: 100%;
|
|
11
|
+
overflow: auto;
|
|
12
|
+
outline: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.section {
|
|
16
|
+
margin: $main_margin;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.offers {
|
|
20
|
+
@include border_top;
|
|
21
|
+
|
|
22
|
+
order: 1;
|
|
23
|
+
|
|
24
|
+
.offers_inner {
|
|
25
|
+
margin: $main_margin;
|
|
26
|
+
margin-top: $gap;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
+ .sections .section {
|
|
30
|
+
margin-bottom: $gap;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.subsection {
|
|
35
|
+
.name {
|
|
36
|
+
margin: 0;
|
|
37
|
+
font-weight: bold;
|
|
38
|
+
font-size: unset;
|
|
39
|
+
text-decoration: underline;
|
|
40
|
+
|
|
41
|
+
&:not(:first-child) {
|
|
42
|
+
margin-top: $main_margin;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
package/scss/shared/help.scss
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
.help,
|
|
2
|
-
.color_help {
|
|
3
|
-
@include folding_text;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.help_btn {
|
|
7
|
-
@include btn;
|
|
8
|
-
|
|
9
|
-
margin-left: var(--help_btn_margin);
|
|
10
|
-
display: flex;
|
|
11
|
-
order: 1;
|
|
12
|
-
|
|
13
|
-
svg {
|
|
14
|
-
display: block;
|
|
15
|
-
width: var(--help_btn_size);
|
|
16
|
-
height: var(--help_btn_size);
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.section_help {
|
|
21
|
-
display: flex;
|
|
22
|
-
margin-bottom: $gap;
|
|
23
|
-
|
|
24
|
-
&:empty {
|
|
25
|
-
display: none;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
+ .subsection {
|
|
29
|
-
margin-top: $gap;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.help {
|
|
33
|
-
max-width: unset;
|
|
34
|
-
margin-top: 0;
|
|
35
|
-
margin-right: 15px;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.help_btn {
|
|
39
|
-
margin-left: auto;
|
|
40
|
-
align-self: flex-start;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.input_item {
|
|
45
|
-
.color_help_w {
|
|
46
|
-
margin-bottom: $gap;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.color_help {
|
|
50
|
-
margin: 0;
|
|
51
|
-
line-height: initial;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
&:not(.textarea) .help_btn {
|
|
55
|
-
align-self: center;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
&.textarea {
|
|
59
|
-
.input_w_and_help_btn {
|
|
60
|
-
align-items: normal;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.help_btn {
|
|
64
|
-
margin-top: 5px;
|
|
65
|
-
display: inline-block;
|
|
66
|
-
height: max-content;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
1
|
+
.help,
|
|
2
|
+
.color_help {
|
|
3
|
+
@include folding_text;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.help_btn {
|
|
7
|
+
@include btn;
|
|
8
|
+
|
|
9
|
+
margin-left: var(--help_btn_margin);
|
|
10
|
+
display: flex;
|
|
11
|
+
order: 1;
|
|
12
|
+
|
|
13
|
+
svg {
|
|
14
|
+
display: block;
|
|
15
|
+
width: var(--help_btn_size);
|
|
16
|
+
height: var(--help_btn_size);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.section_help {
|
|
21
|
+
display: flex;
|
|
22
|
+
margin-bottom: $gap;
|
|
23
|
+
|
|
24
|
+
&:empty {
|
|
25
|
+
display: none;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
+ .subsection {
|
|
29
|
+
margin-top: $gap;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.help {
|
|
33
|
+
max-width: unset;
|
|
34
|
+
margin-top: 0;
|
|
35
|
+
margin-right: 15px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.help_btn {
|
|
39
|
+
margin-left: auto;
|
|
40
|
+
align-self: flex-start;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.input_item {
|
|
45
|
+
.color_help_w {
|
|
46
|
+
margin-bottom: $gap;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.color_help {
|
|
50
|
+
margin: 0;
|
|
51
|
+
line-height: initial;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&:not(.textarea) .help_btn {
|
|
55
|
+
align-self: center;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&.textarea {
|
|
59
|
+
.input_w_and_help_btn {
|
|
60
|
+
align-items: normal;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.help_btn {
|
|
64
|
+
margin-top: 5px;
|
|
65
|
+
display: inline-block;
|
|
66
|
+
height: max-content;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -1,14 +1,11 @@
|
|
|
1
|
+
$theme_color_ynq: white;
|
|
1
2
|
$theme_color_jqv: rgb(255 255 255 / 0.1%);
|
|
2
|
-
$
|
|
3
|
+
$theme_color_tdh: #67ff5f;
|
|
4
|
+
$theme_color_udj: #ff7eee;
|
|
5
|
+
$htc: $theme_color_ynq;
|
|
3
6
|
$tbn: $glass_color;
|
|
4
7
|
$gaq: #efefef;
|
|
5
|
-
|
|
6
|
-
$gqb:
|
|
7
|
-
linear-gradient(45deg, rgb(39 61 213) 0%, rgb(225 5 34 / 0%) 70%) repeat scroll 0% 0%,
|
|
8
|
-
linear-gradient(135deg, rgb(12 255 7) 10%, rgb(49 5 209 / 0%) 80%) repeat scroll 0% 0%,
|
|
9
|
-
linear-gradient(190deg, rgb(135 23 255) 10%, rgb(10 219 216 / 0%) 80%) repeat scroll 0% 0%,
|
|
10
|
-
rgb(0 0 0 / 0%) linear-gradient(315deg, rgb(51 205 196) 100%, rgb(9 245 5 / 0%) 70%) repeat
|
|
11
|
-
scroll 0% 0%;
|
|
8
|
+
$gqb: linear-gradient(128deg, #1072d1 0%, #17909b 100%);
|
|
12
9
|
$hfb: transparent;
|
|
13
10
|
$gvb: rgb(255 255 255 / 36%);
|
|
14
11
|
$npw: rgb(255 255 255 / 20%);
|
|
@@ -19,30 +16,31 @@ $fxm: rgb(255 255 255 / 37.5%);
|
|
|
19
16
|
$nur: rgb(255 255 255 / 20.8%);
|
|
20
17
|
$yuv: rgb(255 255 255 / 60%);
|
|
21
18
|
$vqo: $theme_color_jqv;
|
|
22
|
-
$lpe:
|
|
19
|
+
$lpe: $theme_color_ynq;
|
|
23
20
|
$rbp: $black;
|
|
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
|
-
$
|
|
21
|
+
$tgp: $theme_color_ynq;
|
|
22
|
+
$mdc: #d9d9d9; // Input placeholder
|
|
23
|
+
$yos: #9e61ef; // Pagination button
|
|
24
|
+
$nep: #90efff; // Button active (color picker)
|
|
25
|
+
$htm: #ff974d; // Task (scheduler)
|
|
26
|
+
$qgp: #49b344; // Button hover
|
|
27
|
+
$hyv: #89ff84; // Button hover (color picker; scheduler; custom HTML/CSS/JS)
|
|
28
|
+
$ycp: #fbff12; // Link normal
|
|
29
|
+
$iub: #2e8cff; // Link normal (color picker) / Drop zone (scheduler)
|
|
30
|
+
$cop: $theme_color_tdh; // Link hover
|
|
31
|
+
$yun: #14bf0a; // Link hover (color picker) / text input data is valid (color picker)
|
|
32
|
+
$ptn: #ff98f1; // Link visited
|
|
33
|
+
$dwk: #d046e9; // Input focus (color picker)
|
|
34
|
+
$uzf: #ffae9e; // Link click
|
|
35
|
+
$hap: #f15f41; // Link click (color picker; scheduler; custom HTML/CSS/JS)
|
|
36
|
+
$rqb: #ff5f66; // Text input data is in a warn state (outline)
|
|
37
|
+
$thm: #ff9ea3; // Text input data is in warn state (error message)
|
|
38
|
+
$suc: #d0111a; // [Clear New Tab] Text input data is in a warn state (outline; scheduler)
|
|
39
|
+
$pxd: #fff900; // Section button selected indicator selected / [Clear New Tab] Background outline
|
|
40
|
+
$ksu: $theme_color_tdh; // Section button selected indicator hover / Text input data is valid
|
|
41
|
+
$upd: $theme_color_udj; // Tab key input outline
|
|
42
|
+
$fpw: $theme_color_udj; // [Clear New Tab] Background focus outline
|
|
43
|
+
$dfp: #0079ef; // Loading screen
|
|
44
|
+
$nqp: rgb(255 84 169 / 99%); // Text selection
|
|
45
|
+
$hgb: rgb(255 77 85 / 99%); // [Clear New Tab] Screen help text selection (custom HTML/CSS/JS)
|
|
46
|
+
$beu: rgb(255 255 255 / 75%); // upload screen background
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
$theme_color_ynq: white;
|
|
2
|
+
$theme_color_jqv: rgb(255 255 255 / 0.1%);
|
|
3
|
+
$theme_color_udl: #19f4ff;
|
|
4
|
+
$theme_color_udj: #ff7eee;
|
|
5
|
+
$htc: $theme_color_ynq;
|
|
6
|
+
$tbn: $glass_color;
|
|
7
|
+
$gaq: #efefef;
|
|
8
|
+
$gqb: linear-gradient(128deg, #257d2c 0%, #457521 100%);
|
|
9
|
+
$hfb: transparent;
|
|
10
|
+
$gvb: rgb(255 255 255 / 36%);
|
|
11
|
+
$npw: rgb(255 255 255 / 20%);
|
|
12
|
+
$hcx: $theme_color_jqv;
|
|
13
|
+
$hev: #bbb;
|
|
14
|
+
$hyn: rgb(255 255 255 / 50%);
|
|
15
|
+
$fxm: rgb(255 255 255 / 37.5%);
|
|
16
|
+
$nur: rgb(255 255 255 / 20.8%);
|
|
17
|
+
$yuv: rgb(255 255 255 / 60%);
|
|
18
|
+
$vqo: $theme_color_jqv;
|
|
19
|
+
$lpe: $theme_color_ynq;
|
|
20
|
+
$rbp: $black;
|
|
21
|
+
$tgp: $theme_color_ynq;
|
|
22
|
+
$mdc: #d9d9d9;
|
|
23
|
+
$yos: #9e61ef;
|
|
24
|
+
$nep: #90efff;
|
|
25
|
+
$htm: #ff974d;
|
|
26
|
+
$qgp: #1f90ff;
|
|
27
|
+
$hyv: #89ff84;
|
|
28
|
+
$ycp: #fbff12;
|
|
29
|
+
$iub: #2e8cff;
|
|
30
|
+
$cop: #4bfcff;
|
|
31
|
+
$yun: #14bf0a;
|
|
32
|
+
$ptn: #ff98f1;
|
|
33
|
+
$dwk: #d046e9;
|
|
34
|
+
$uzf: #ffae9e;
|
|
35
|
+
$hap: #f15f41;
|
|
36
|
+
$rqb: #ff5f66;
|
|
37
|
+
$thm: #ff9ea3;
|
|
38
|
+
$suc: #d0111a;
|
|
39
|
+
$pxd: #fff900;
|
|
40
|
+
$ksu: #67ff5f;
|
|
41
|
+
$upd: $theme_color_udl;
|
|
42
|
+
$fpw: $theme_color_udl;
|
|
43
|
+
$dfp: #29ab34;
|
|
44
|
+
$nqp: rgb(244 96 62 / 99%);
|
|
45
|
+
$hgb: rgb(255 77 85 / 99%);
|
|
46
|
+
$beu: rgb(255 255 255 / 75%);
|
|
@@ -26,6 +26,7 @@ $yuv: $theme_color_hbt;
|
|
|
26
26
|
$vqo: $theme_color_hbt;
|
|
27
27
|
$lpe: $theme_color_kdc;
|
|
28
28
|
$rbp: $theme_color_kdc;
|
|
29
|
+
$tgp: $theme_color_kdc;
|
|
29
30
|
$mdc: #b1b1b1;
|
|
30
31
|
$yos: $theme_color_uvr;
|
|
31
32
|
$nep: $theme_color_uvr;
|
|
@@ -46,7 +47,7 @@ $suc: $theme_color_yhn;
|
|
|
46
47
|
$pxd: $theme_color_kxn;
|
|
47
48
|
$ksu: $theme_color_tjn;
|
|
48
49
|
$upd: $theme_color_bvc;
|
|
49
|
-
$fpw: $
|
|
50
|
+
$fpw: $theme_color_bvc;
|
|
50
51
|
$dfp: #29394d;
|
|
51
52
|
$nqp: $theme_color_gsl;
|
|
52
53
|
$hgb: $theme_color_gsl;
|
|
@@ -1,18 +1,13 @@
|
|
|
1
|
+
$theme_color_ynq: white;
|
|
1
2
|
$theme_color_jqv: rgb(255 255 255 / 0.1%);
|
|
2
3
|
$theme_color_udj: #19f4ff;
|
|
3
4
|
$theme_color_kvo: #4bff1f;
|
|
4
5
|
$theme_color_ftp: #fbff12;
|
|
5
6
|
$theme_color_oyq: #ff8400;
|
|
6
|
-
$htc:
|
|
7
|
+
$htc: $theme_color_ynq;
|
|
7
8
|
$tbn: $glass_color;
|
|
8
9
|
$gaq: #efefef;
|
|
9
|
-
|
|
10
|
-
$gqb:
|
|
11
|
-
linear-gradient(45deg, rgb(52 15 189) 0%, rgb(225 5 34 / 0%) 70%) repeat scroll 0% 0%,
|
|
12
|
-
linear-gradient(135deg, rgb(241 22 168) 10%, rgb(49 5 209 / 0%) 80%) repeat scroll 0% 0%,
|
|
13
|
-
linear-gradient(190deg, rgb(26 211 208) 10%, rgb(10 219 216 / 0%) 80%) repeat scroll 0% 0%,
|
|
14
|
-
rgb(0 0 0 / 0%) linear-gradient(315deg, rgb(163 34 203) 100%, rgb(9 245 5 / 0%) 70%) repeat
|
|
15
|
-
scroll 0% 0%;
|
|
10
|
+
$gqb: linear-gradient(128deg, #3d29d1 0%, #6b3b9b 100%);
|
|
16
11
|
$hfb: transparent;
|
|
17
12
|
$gvb: rgb(255 255 255 / 36%);
|
|
18
13
|
$npw: rgb(255 255 255 / 20%);
|
|
@@ -23,30 +18,31 @@ $fxm: rgb(255 255 255 / 37.5%);
|
|
|
23
18
|
$nur: rgb(255 255 255 / 20.8%);
|
|
24
19
|
$yuv: rgb(255 255 255 / 60%);
|
|
25
20
|
$vqo: $theme_color_jqv;
|
|
26
|
-
$lpe:
|
|
21
|
+
$lpe: $theme_color_ynq;
|
|
27
22
|
$rbp: $black;
|
|
23
|
+
$tgp: $theme_color_ynq;
|
|
28
24
|
$mdc: #d9d9d9;
|
|
29
|
-
$yos: #
|
|
25
|
+
$yos: #42b326;
|
|
30
26
|
$nep: #90efff;
|
|
31
|
-
$htm: #
|
|
32
|
-
$qgp: #
|
|
33
|
-
$hyv: #
|
|
34
|
-
$ycp: $
|
|
27
|
+
$htm: #ff974d;
|
|
28
|
+
$qgp: #1f90ff;
|
|
29
|
+
$hyv: #89ff84;
|
|
30
|
+
$ycp: $theme_color_ftp;
|
|
35
31
|
$iub: #2e8cff;
|
|
36
32
|
$cop: $theme_color_kvo;
|
|
37
33
|
$yun: #14bf0a;
|
|
38
|
-
$ptn: $
|
|
34
|
+
$ptn: $theme_color_udj;
|
|
39
35
|
$dwk: #d046e9;
|
|
40
36
|
$uzf: $theme_color_oyq;
|
|
41
|
-
$hap: #
|
|
42
|
-
$rqb: #
|
|
43
|
-
$thm: #
|
|
37
|
+
$hap: #f15f41;
|
|
38
|
+
$rqb: #ff5f66;
|
|
39
|
+
$thm: #ff9ea3;
|
|
44
40
|
$suc: #d0111a;
|
|
45
|
-
$pxd:
|
|
46
|
-
$ksu:
|
|
47
|
-
$upd: $
|
|
48
|
-
$fpw: $
|
|
49
|
-
$dfp: #
|
|
41
|
+
$pxd: #fff900;
|
|
42
|
+
$ksu: #67ff5f;
|
|
43
|
+
$upd: $theme_color_udj;
|
|
44
|
+
$fpw: $theme_color_udj;
|
|
45
|
+
$dfp: #4831df;
|
|
50
46
|
$nqp: rgb(244 96 62 / 99%);
|
|
51
47
|
$hgb: rgb(255 77 85 / 99%);
|
|
52
48
|
$beu: rgb(255 255 255 / 75%);
|
|
@@ -2,8 +2,8 @@ $theme_color_ynq: white;
|
|
|
2
2
|
$theme_color_ytb: #efefef;
|
|
3
3
|
$theme_color_hbt: #bbb;
|
|
4
4
|
$theme_color_kdc: $black;
|
|
5
|
-
$theme_color_ecm: #
|
|
6
|
-
$theme_color_uvr: #
|
|
5
|
+
$theme_color_ecm: #41ff73;
|
|
6
|
+
$theme_color_uvr: #72ebff;
|
|
7
7
|
$theme_color_kxn: #2e8cff;
|
|
8
8
|
$theme_color_tjn: #14bf0a;
|
|
9
9
|
$theme_color_bvc: #d046e9;
|
|
@@ -26,6 +26,7 @@ $yuv: $theme_color_hbt;
|
|
|
26
26
|
$vqo: $theme_color_hbt;
|
|
27
27
|
$lpe: $theme_color_kdc;
|
|
28
28
|
$rbp: $theme_color_kdc;
|
|
29
|
+
$tgp: $theme_color_ynq;
|
|
29
30
|
$mdc: #878787;
|
|
30
31
|
$yos: $theme_color_uvr;
|
|
31
32
|
$nep: $theme_color_uvr;
|
|
@@ -46,8 +47,8 @@ $suc: $theme_color_yhn;
|
|
|
46
47
|
$pxd: $theme_color_kxn;
|
|
47
48
|
$ksu: $theme_color_tjn;
|
|
48
49
|
$upd: $theme_color_bvc;
|
|
49
|
-
$fpw: $
|
|
50
|
-
$dfp: #
|
|
50
|
+
$fpw: $theme_color_bvc;
|
|
51
|
+
$dfp: #38a3ff;
|
|
51
52
|
$nqp: $theme_color_gsl;
|
|
52
53
|
$hgb: $theme_color_gsl;
|
|
53
54
|
$beu: rgb(255 255 255 / 75%);
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
$theme_color_ynq: white;
|
|
2
|
+
$theme_color_jqv: rgb(255 255 255 / 0.1%);
|
|
3
|
+
$theme_color_tdh: #67ff5f;
|
|
4
|
+
$theme_color_udj: #19f4ff;
|
|
5
|
+
$htc: $theme_color_ynq;
|
|
6
|
+
$tbn: $glass_color;
|
|
7
|
+
$gaq: #efefef;
|
|
8
|
+
$gqb: linear-gradient(128deg, #ad1734 0%, #97286a 100%);
|
|
9
|
+
$hfb: transparent;
|
|
10
|
+
$gvb: rgb(255 255 255 / 36%);
|
|
11
|
+
$npw: rgb(255 255 255 / 20%);
|
|
12
|
+
$hcx: $theme_color_jqv;
|
|
13
|
+
$hev: #bbb;
|
|
14
|
+
$hyn: rgb(255 255 255 / 50%);
|
|
15
|
+
$fxm: rgb(255 255 255 / 37.5%);
|
|
16
|
+
$nur: rgb(255 255 255 / 20.8%);
|
|
17
|
+
$yuv: rgb(255 255 255 / 60%);
|
|
18
|
+
$vqo: $theme_color_jqv;
|
|
19
|
+
$lpe: $theme_color_ynq;
|
|
20
|
+
$rbp: $black;
|
|
21
|
+
$tgp: $theme_color_ynq;
|
|
22
|
+
$mdc: #d9d9d9;
|
|
23
|
+
$yos: #42b326;
|
|
24
|
+
$nep: #90efff;
|
|
25
|
+
$htm: #ff974d;
|
|
26
|
+
$qgp: #1f90ff;
|
|
27
|
+
$hyv: #89ff84;
|
|
28
|
+
$ycp: #fbff12;
|
|
29
|
+
$iub: #2e8cff;
|
|
30
|
+
$cop: $theme_color_tdh;
|
|
31
|
+
$yun: #14bf0a;
|
|
32
|
+
$ptn: #1a44ff;
|
|
33
|
+
$dwk: #d046e9;
|
|
34
|
+
$uzf: #4bfcff;
|
|
35
|
+
$hap: #f15f41;
|
|
36
|
+
$rqb: #ff8513;
|
|
37
|
+
$thm: #ffa78f;
|
|
38
|
+
$suc: #d0111a;
|
|
39
|
+
$pxd: #fff900;
|
|
40
|
+
$ksu: $theme_color_tdh;
|
|
41
|
+
$upd: $theme_color_udj;
|
|
42
|
+
$fpw: $theme_color_udj;
|
|
43
|
+
$dfp: #c71538;
|
|
44
|
+
$nqp: rgb(255 84 169 / 99%);
|
|
45
|
+
$hgb: rgb(255 77 85 / 99%);
|
|
46
|
+
$beu: rgb(255 255 255 / 75%);
|
|
@@ -26,6 +26,7 @@ $yuv: $theme_color_hbt;
|
|
|
26
26
|
$vqo: $theme_color_hbt;
|
|
27
27
|
$lpe: $theme_color_kdc;
|
|
28
28
|
$rbp: $theme_color_kdc;
|
|
29
|
+
$tgp: $theme_color_kdc;
|
|
29
30
|
$mdc: #8d8d8d;
|
|
30
31
|
$yos: $theme_color_uvr;
|
|
31
32
|
$nep: $theme_color_uvr;
|
|
@@ -46,7 +47,7 @@ $suc: $theme_color_yhn;
|
|
|
46
47
|
$pxd: $theme_color_kxn;
|
|
47
48
|
$ksu: $theme_color_tjn;
|
|
48
49
|
$upd: $theme_color_bvc;
|
|
49
|
-
$fpw: $
|
|
50
|
+
$fpw: $theme_color_bvc;
|
|
50
51
|
$dfp: #0f1721;
|
|
51
52
|
$nqp: $theme_color_gsl;
|
|
52
53
|
$hgb: $theme_color_gsl;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
@import '../../vars';
|
|
2
|
-
@import '../../mixins';
|
|
3
|
-
@import '../../functions';
|
|
4
|
-
@import '../colors/dark';
|
|
5
|
-
@import 'template';
|
|
6
|
-
|
|
7
|
-
.main_2 {
|
|
8
|
-
box-shadow: $blue_neon_dark;
|
|
9
|
-
}
|
|
1
|
+
@import '../../vars';
|
|
2
|
+
@import '../../mixins';
|
|
3
|
+
@import '../../functions';
|
|
4
|
+
@import '../colors/dark';
|
|
5
|
+
@import 'template';
|
|
6
|
+
|
|
7
|
+
.main_2 {
|
|
8
|
+
box-shadow: $blue_neon_dark;
|
|
9
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
@import '../../vars';
|
|
2
|
-
@import '../../mixins';
|
|
3
|
-
@import '../../functions';
|
|
4
|
-
@import '../colors/light';
|
|
5
|
-
@import 'template';
|
|
6
|
-
|
|
7
|
-
.main_2 {
|
|
8
|
-
box-shadow: $black_shadow;
|
|
9
|
-
}
|
|
1
|
+
@import '../../vars';
|
|
2
|
+
@import '../../mixins';
|
|
3
|
+
@import '../../functions';
|
|
4
|
+
@import '../colors/light';
|
|
5
|
+
@import 'template';
|
|
6
|
+
|
|
7
|
+
.main_2 {
|
|
8
|
+
box-shadow: $black_shadow;
|
|
9
|
+
}
|