@loftyshaky/shared 1.0.2 → 1.1.1

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.
Files changed (118) hide show
  1. package/_locales/en/messages.json +7 -1
  2. package/_locales/ru/messages.json +6 -0
  3. package/announcement.js +1 -1
  4. package/app.js +1 -1
  5. package/chunk-main-42bcd395.js +1 -0
  6. package/chunk-main-83638fdc.js +9 -0
  7. package/{chunk-main-4661c4ad.js → chunk-main-adf43da6.js} +1 -1
  8. package/{chunk-pickr.min-e4e11a57.js → chunk-pickr.min-ebbd43c5.js} +1 -1
  9. package/ext.js +1 -1
  10. package/index.d.ts +1 -1
  11. package/index.js +1 -1
  12. package/inputs.js +1 -1
  13. package/js/env.js +11 -3
  14. package/js/locales.js +12 -3
  15. package/js/webpack.config.js +5 -0
  16. package/package.json +13 -13
  17. package/scss/settings/section_btns.scss +52 -52
  18. package/scss/settings/transitions.scss +0 -10
  19. package/scss/shared/btns.scss +69 -16
  20. package/scss/shared/checkboxes.scss +38 -38
  21. package/scss/shared/close_btn.scss +18 -0
  22. package/scss/shared/color_pickers.scss +93 -93
  23. package/scss/shared/colors.scss +90 -84
  24. package/scss/shared/embed/error.scss +7 -23
  25. package/scss/shared/focus.scss +15 -9
  26. package/scss/shared/functions.scss +5 -0
  27. package/scss/shared/help.scss +3 -5
  28. package/scss/shared/index.scss +4 -0
  29. package/scss/shared/input_btns.scss +12 -11
  30. package/scss/shared/input_error.scss +3 -0
  31. package/scss/shared/inputs.scss +86 -70
  32. package/scss/shared/inset_border.scss +0 -4
  33. package/scss/shared/link_btns.scss +2 -0
  34. package/scss/shared/links.scss +8 -0
  35. package/scss/shared/main.scss +3 -0
  36. package/scss/shared/mixins.scss +45 -0
  37. package/scss/shared/mods.scss +4 -0
  38. package/scss/shared/scrollbar.scss +35 -35
  39. package/scss/shared/themes/colors/aqua.scss +38 -0
  40. package/scss/shared/themes/colors/dark.scss +46 -12
  41. package/scss/shared/themes/colors/lavender.scss +38 -0
  42. package/scss/shared/themes/colors/light.scss +46 -12
  43. package/scss/shared/themes/colors/very_dark.scss +46 -12
  44. package/scss/shared/themes/general/aqua_theme.scss +9 -0
  45. package/scss/shared/themes/general/dark_theme.scss +3 -1
  46. package/scss/shared/themes/general/lavender_theme.scss +9 -0
  47. package/scss/shared/themes/general/light_theme.scss +3 -1
  48. package/scss/shared/themes/general/template.scss +105 -71
  49. package/scss/shared/themes/general/template_focus.scss +20 -8
  50. package/scss/shared/themes/general/very_dark_theme.scss +3 -1
  51. package/scss/shared/transitions.scss +21 -3
  52. package/scss/shared/upload_box.scss +81 -67
  53. package/scss/shared/vars.scss +9 -2
  54. package/settings.d.ts +1 -1
  55. package/settings.js +1 -1
  56. package/ts/error_modules/error/data/main.d.ts +1 -1
  57. package/ts/error_modules/error/data/msg.d.ts +0 -2
  58. package/ts/error_modules/error/data/state.d.ts +1 -2
  59. package/ts/error_modules/error/interfaces/index.d.ts +1 -0
  60. package/ts/error_modules/error/interfaces/notification_type.d.ts +1 -0
  61. package/ts/error_modules/error/interfaces/observable_keys.d.ts +1 -1
  62. package/ts/error_modules/error/interfaces/show_error.d.ts +5 -2
  63. package/ts/error_modules/error/scripts/flash.d.ts +11 -0
  64. package/ts/error_modules/error/scripts/globals.d.ts +2 -0
  65. package/ts/error_modules/error/scripts/index.d.ts +2 -0
  66. package/ts/error_modules/error/scripts/notification.d.ts +7 -0
  67. package/ts/error_modules/internal.d.ts +1 -0
  68. package/ts/inputs/components/form.d.ts +3 -0
  69. package/ts/inputs/components/index.d.ts +4 -0
  70. package/ts/inputs/components/input_error.d.ts +3 -0
  71. package/ts/inputs/components/label_in_input_item.d.ts +3 -0
  72. package/ts/inputs/components/link_icon_btn.d.ts +3 -0
  73. package/ts/inputs/components/prop_types/form.d.ts +5 -0
  74. package/ts/inputs/components/prop_types/index.d.ts +4 -0
  75. package/ts/inputs/components/prop_types/input_error.d.ts +4 -0
  76. package/ts/inputs/components/prop_types/label.d.ts +2 -2
  77. package/ts/inputs/components/prop_types/label_in_input_item.d.ts +4 -0
  78. package/ts/inputs/components/prop_types/link_icon_btn.d.ts +5 -0
  79. package/ts/inputs/components/prop_types/range.d.ts +2 -0
  80. package/ts/inputs/components/prop_types/select.d.ts +2 -0
  81. package/ts/inputs/components/prop_types/text.d.ts +2 -0
  82. package/ts/inputs/components/prop_types/textarea.d.ts +2 -0
  83. package/ts/inputs/components/prop_types/upload_box.d.ts +1 -0
  84. package/ts/inputs/data/index.d.ts +2 -1
  85. package/ts/inputs/data/input_error.d.ts +12 -0
  86. package/ts/inputs/data/input_width.d.ts +5 -1
  87. package/ts/inputs/data/{label.d.ts → labelIn_in_putI_iem.d.ts} +2 -2
  88. package/ts/inputs/data/upload_box.d.ts +4 -0
  89. package/ts/inputs/data/val.d.ts +10 -5
  90. package/ts/inputs/interfaces/btn_option.d.ts +9 -0
  91. package/ts/inputs/interfaces/index.d.ts +1 -0
  92. package/ts/inputs/interfaces/input.d.ts +1 -1
  93. package/ts/inputs/obj/btn.d.ts +1 -0
  94. package/ts/inputs/obj/file.d.ts +1 -0
  95. package/ts/inputs/obj/form.d.ts +7 -0
  96. package/ts/inputs/obj/icon_btn.d.ts +2 -1
  97. package/ts/inputs/obj/index.d.ts +2 -0
  98. package/ts/inputs/obj/input_base.d.ts +10 -3
  99. package/ts/inputs/obj/label.d.ts +5 -0
  100. package/ts/inputs/obj/link.d.ts +4 -0
  101. package/ts/inputs/obj/link_btn.d.ts +2 -1
  102. package/ts/inputs/obj/section.d.ts +2 -0
  103. package/ts/inputs/obj/text.d.ts +2 -1
  104. package/ts/inputs/obj/upload_box.d.ts +4 -0
  105. package/ts/inputs/scripts/resolve.d.ts +3 -1
  106. package/ts/settings/data/back_up.d.ts +2 -1
  107. package/ts/settings/data/sections.d.ts +4 -1
  108. package/ts/settings/internal.d.ts +0 -2
  109. package/ts/shared/app.d.ts +10 -3
  110. package/ts/shared/internal.d.ts +2 -0
  111. package/ts/{settings → shared}/schema/data/index.d.ts +0 -0
  112. package/ts/{settings → shared}/schema/data/main.d.ts +3 -2
  113. package/ts/{settings → shared}/schema/obj/index.d.ts +0 -0
  114. package/ts/{settings → shared}/schema/obj/transform_item.d.ts +0 -0
  115. package/ts/shared/t.d.ts +2 -0
  116. package/ts/shared/x.d.ts +5 -0
  117. package/chunk-main-536b8e4c.js +0 -9
  118. package/chunk-main-53e40464.js +0 -1
@@ -1,70 +1,86 @@
1
- input[type='file'] {
2
- display: none;
3
- }
4
-
5
- .input_item {
6
- padding-right: $main_margin;
7
- margin-left: unset;
8
- justify-content: unset;
9
- align-items: center;
10
- flex-direction: column;
11
- display: table;
12
- width: auto;
13
-
14
- &.child {
15
- margin-left: 28px;
16
- }
17
-
18
- &:not(:first-child) {
19
- margin-top: $gap;
20
- }
21
-
22
- .label {
23
- display: flex;
24
- align-items: center;
25
- height: unset;
26
- margin-right: 0;
27
- white-space: normal;
28
- }
29
-
30
- &.text .label,
31
- &.textarea .label,
32
- &.select .label,
33
- &.range .label {
34
- margin-bottom: $gap_small;
35
- }
36
-
37
- .input {
38
- @include input_basic;
39
-
40
- opacity: 1; // needed to keep default color when element is is_enabled
41
- height: $input_height;
42
- padding: 0 $input_inner_padding 0 $input_inner_padding;
43
- flex-grow: 1;
44
- border-radius: 0;
45
- box-sizing: border-box;
46
- }
47
-
48
- .input_w_and_help_btn {
49
- display: flex;
50
- align-items: center;
51
- }
52
-
53
- .input_w {
54
- position: relative;
55
- display: flex;
56
- flex-shrink: 0;
57
- box-sizing: border-box;
58
-
59
- &.text,
60
- &.textarea,
61
- &.select {
62
- @include border_transparent;
63
- }
64
-
65
- &.is_in_focus_state:not(.select)::before,
66
- &.is_in_warn_state:not(.select)::before {
67
- @include outline_solid_thick;
68
- }
69
- }
70
- }
1
+ input[type='file'] {
2
+ display: none;
3
+ }
4
+
5
+ .input_item_form {
6
+ margin-bottom: 0;
7
+ }
8
+
9
+ .label:not(:first-child) {
10
+ margin-top: $gap;
11
+ }
12
+
13
+ .input_item {
14
+ padding-right: $main_margin;
15
+ margin-left: unset;
16
+ justify-content: unset;
17
+ align-items: center;
18
+ flex-direction: column;
19
+ display: table;
20
+ width: auto;
21
+
22
+ &.child {
23
+ margin-left: 28px;
24
+ }
25
+
26
+ &:not(:first-child) {
27
+ margin-top: $gap;
28
+ }
29
+
30
+ .label_in_input_item {
31
+ display: flex;
32
+ align-items: center;
33
+ height: unset;
34
+ margin-right: 0;
35
+ white-space: normal;
36
+ }
37
+
38
+ &.text,
39
+ &.textarea,
40
+ &.select,
41
+ &.range,
42
+ &.upload_box,
43
+ &.group {
44
+ .label_in_input_item:not(:empty) {
45
+ margin-bottom: $gap_small;
46
+ }
47
+ }
48
+
49
+ .input {
50
+ @include input_basic;
51
+
52
+ opacity: 1; // needed to keep default color when element is is_enabled
53
+ height: $input_height;
54
+ padding: 0 $input_inner_padding 0 $input_inner_padding;
55
+ flex-grow: 1;
56
+ border-radius: 0;
57
+ box-sizing: border-box;
58
+ }
59
+
60
+ .input_w_and_help_btn {
61
+ display: flex;
62
+ align-items: center;
63
+ }
64
+
65
+ .input_w {
66
+ position: relative;
67
+ display: flex;
68
+ flex-shrink: 0;
69
+ box-sizing: border-box;
70
+
71
+ &.text,
72
+ &.textarea,
73
+ &.select {
74
+ @include border_transparent;
75
+ }
76
+
77
+ .main_visualization_w {
78
+ @include border_transparent;
79
+ }
80
+
81
+ &.is_in_focus_state:not(.select)::before,
82
+ &.is_in_warn_state:not(.select)::before {
83
+ @include outline_solid_thick;
84
+ }
85
+ }
86
+ }
@@ -14,7 +14,3 @@
14
14
  z-index: 1;
15
15
  }
16
16
  }
17
-
18
- .input_item.color .inset_border::before {
19
- outline: none;
20
- }
@@ -1,4 +1,6 @@
1
1
  .link_btn {
2
+ @include btn;
3
+
2
4
  display: block;
3
5
  font-size: $font_small;
4
6
 
@@ -4,6 +4,14 @@
4
4
  border: 0;
5
5
  padding: 0;
6
6
  cursor: pointer;
7
+
8
+ &.svg {
9
+ svg {
10
+ display: block;
11
+ width: $icon_btn_size;
12
+ height: $icon_btn_size;
13
+ }
14
+ }
7
15
  }
8
16
 
9
17
  .link:not(:first-child) {
@@ -0,0 +1,3 @@
1
+ .main_2 {
2
+ box-sizing: border-box;
3
+ }
@@ -32,6 +32,13 @@ $border_width_thick: 2px;
32
32
  transform: translate(-50%, -50%);
33
33
  }
34
34
 
35
+ @mixin center_horizontal_variable_width { // max-width should be set
36
+ left: calc(-50vw + 50%);
37
+ right: calc(-50vw + 50%);
38
+ margin-left: auto;
39
+ margin-right: auto;
40
+ }
41
+
35
42
  @mixin btn {
36
43
  background-color: transparent;
37
44
  outline: none;
@@ -128,3 +135,41 @@ $box_shadow_for_mixin: rgb(0 0 0 / 30%) 0 0 2px, rgb(0 0 0 / 30%) 0 4px 8px;
128
135
  outline-width: $border_width_thick;
129
136
  outline-style: dashed;
130
137
  }
138
+
139
+ @mixin folding_text {
140
+ max-width: 700px;
141
+ font-size: $font_small;
142
+ margin: 0;
143
+ margin-top: $gap_small;
144
+ white-space: pre-wrap;
145
+ }
146
+
147
+ @mixin glass {
148
+ border: 1px solid $yuv;
149
+ box-shadow: $black_shadow_2;
150
+ }
151
+
152
+ @mixin link_colors($main, $visited, $hover, $active) {
153
+ color: $main;
154
+
155
+ &:visited {
156
+ color: $visited;
157
+ }
158
+
159
+ &:hover {
160
+ color: $hover;
161
+ }
162
+
163
+ &:active {
164
+ color: $active;
165
+ }
166
+ }
167
+
168
+ @mixin backdrop_filter_before {
169
+ @include full_spread;
170
+
171
+ content: '';
172
+ position: absolute;
173
+ z-index: -1;
174
+ backdrop-filter: $glass_blur;
175
+ }
@@ -16,6 +16,10 @@
16
16
  top: -99999px !important;
17
17
  }
18
18
 
19
+ .visibility_hidden {
20
+ visibility: hidden !important;
21
+ }
22
+
19
23
  .overflow_auto {
20
24
  overflow: auto;
21
25
  }
@@ -1,35 +1,35 @@
1
- $thumb_border_left: 5px solid transparent;
2
- $thumb_border_right: 4px solid transparent;
3
-
4
- :not(html, body, select) {
5
- &::-webkit-scrollbar {
6
- width: 17px;
7
- }
8
-
9
- &::-webkit-scrollbar-thumb {
10
- background-clip: content-box;
11
- }
12
-
13
- &::-webkit-resizer {
14
- @include border_top;
15
- @include border_left;
16
- }
17
-
18
- &::-webkit-scrollbar-track:vertical {
19
- @include border_left;
20
- }
21
-
22
- &::-webkit-scrollbar-track:horizontal {
23
- @include border_top;
24
- }
25
-
26
- &::-webkit-scrollbar-thumb:vertical {
27
- border-left: $thumb_border_left;
28
- border-right: $thumb_border_right;
29
- }
30
-
31
- &::-webkit-scrollbar-thumb:horizontal {
32
- border-top: $thumb_border_left;
33
- border-bottom: $thumb_border_right;
34
- }
35
- }
1
+ $thumb_border_left: 5px solid transparent;
2
+ $thumb_border_right: 4px solid transparent;
3
+
4
+ :not(html, body, select) {
5
+ &::-webkit-scrollbar {
6
+ width: 17px;
7
+ }
8
+
9
+ &::-webkit-scrollbar-thumb {
10
+ background-clip: content-box;
11
+ }
12
+
13
+ &::-webkit-resizer {
14
+ @include border_top;
15
+ @include border_left;
16
+ }
17
+
18
+ &::-webkit-scrollbar-track:vertical {
19
+ @include border_left;
20
+ }
21
+
22
+ &::-webkit-scrollbar-track:horizontal {
23
+ @include border_top;
24
+ }
25
+
26
+ &::-webkit-scrollbar-thumb:vertical {
27
+ border-left: $thumb_border_left;
28
+ border-right: $thumb_border_right;
29
+ }
30
+
31
+ &::-webkit-scrollbar-thumb:horizontal {
32
+ border-top: $thumb_border_left;
33
+ border-bottom: $thumb_border_right;
34
+ }
35
+ }
@@ -0,0 +1,38 @@
1
+ $theme_color_jqv: rgb(255 255 255 / 0.1%);
2
+
3
+ $htc: white;
4
+ $tbn: $glass_color;
5
+ $gaq: #efefef;
6
+ /* stylelint-disable-next-line max-line-length */
7
+ $gqb: linear-gradient(45deg, rgb(39 61 213) 0%, rgb(225 5 34 / 0%) 70%) repeat scroll 0% 0%, linear-gradient(135deg, rgb(12 255 7) 10%, rgb(49 5 209 / 0%) 80%) repeat scroll 0% 0%, linear-gradient(190deg, rgb(135 23 255) 10%, rgb(10 219 216 / 0%) 80%) repeat scroll 0% 0%, rgb(0 0 0 / 0%) linear-gradient(315deg, rgb(51 205 196) 100%, rgb(9 245 5 / 0%) 70%) repeat scroll 0% 0%;
8
+ $hfb: transparent;
9
+ $gvb: rgb(255 255 255 / 36%);
10
+ $npw: rgb(255 255 255 / 20%);
11
+ $hcx: $theme_color_jqv;
12
+ $hev: #bbb;
13
+ $hyn: rgb(255 255 255 / 50%);
14
+ $fxm: rgb(255 255 255 / 37.5%);
15
+ $nur: rgb(255 255 255 / 20.8%);
16
+ $yuv: rgb(255 255 255 / 60%);
17
+ $vqo: $theme_color_jqv;
18
+ $lpe: white;
19
+ $rbp: $black;
20
+ $mdc: #d9d9d9;
21
+ $yos: #16d3f5;
22
+ $nep: #90efff;
23
+ $htm: #ffa96c;
24
+ $qgp: #28dd57;
25
+ $hyv: #66ff8e;
26
+ $ycp: #0014ff;
27
+ $iub: #2e8cff;
28
+ $cop: #be1;
29
+ $yun: #14bf0a;
30
+ $ptn: #ae00ff;
31
+ $dwk: #d046e9;
32
+ $uzf: #ff8f1f;
33
+ $hap: #f17442;
34
+ $rqb: #e7121c;
35
+ $suc: #d0111a;
36
+ $dfp: #0cbea4;
37
+ $nqp: rgb(57 124 249 / 99%);
38
+ $hgb: rgb(255 77 85 / 99%);
@@ -1,14 +1,48 @@
1
- $htc: #2a3038;
2
- $gaq: #1d2329;
3
- $hev: #42505e;
4
- $lpe: white;
5
- $yos: #144581;
1
+ $theme_color_ynq: #2a3038;
2
+ $theme_color_ytb: #1d2329;
3
+ $theme_color_hbt: #42505e;
4
+ $theme_color_kdc: white;
5
+ $theme_color_ecm: #1b5a17;
6
+ $theme_color_uvr: #144581;
7
+ $theme_color_kxn: #308af9;
8
+ $theme_color_tjn: #09a700;
9
+ $theme_color_bvc: #b938c7;
10
+ $theme_color_wnc: #ce7209;
11
+ $theme_color_yhn: #bb141c;
12
+ $theme_color_gsl: rgb(174 35 43 / 99%);
13
+
14
+ $htc: $theme_color_ynq;
15
+ $tbn: $theme_color_ynq;
16
+ $gaq: $theme_color_ytb;
17
+ $gqb: $theme_color_ytb;
18
+ $hfb: $theme_color_ytb;
19
+ $gvb: $theme_color_ytb;
20
+ $npw: $theme_color_ytb;
21
+ $hcx: $theme_color_ytb;
22
+ $hev: $theme_color_hbt;
23
+ $hyn: $theme_color_hbt;
24
+ $fxm: $theme_color_hbt;
25
+ $nur: $theme_color_hbt;
26
+ $yuv: $theme_color_hbt;
27
+ $vqo: $theme_color_hbt;
28
+ $lpe: $theme_color_kdc;
29
+ $rbp: $theme_color_kdc;
30
+ $mdc: #b1b1b1;
31
+ $yos: $theme_color_uvr;
32
+ $nep: $theme_color_uvr;
6
33
  $htm: #8d4816;
7
- $qgp: #1b5a17;
8
- $ycp: #308af9;
9
- $cop: #09a700;
10
- $ptn: #b938c7;
11
- $uzf: #ce7209;
12
- $rqb: #bb141c;
34
+ $qgp: $theme_color_ecm;
35
+ $hyv: $theme_color_ecm;
36
+ $ycp: $theme_color_kxn;
37
+ $iub: $theme_color_kxn;
38
+ $cop: $theme_color_tjn;
39
+ $yun: $theme_color_tjn;
40
+ $ptn: $theme_color_bvc;
41
+ $dwk: $theme_color_bvc;
42
+ $uzf: $theme_color_wnc;
43
+ $hap: $theme_color_wnc;
44
+ $rqb: $theme_color_yhn;
45
+ $suc: $theme_color_yhn;
13
46
  $dfp: #29394d;
14
- $nqp: rgb(174 35 43 / 99%);
47
+ $nqp: $theme_color_gsl;
48
+ $hgb: $theme_color_gsl;
@@ -0,0 +1,38 @@
1
+ $theme_color_jqv: rgb(255 255 255 / 0.1%);
2
+
3
+ $htc: white;
4
+ $tbn: $glass_color;
5
+ $gaq: #efefef;
6
+ /* stylelint-disable-next-line max-line-length */
7
+ $gqb: linear-gradient(45deg, rgb(52 15 189) 0%, rgb(225 5 34 / 0%) 70%) repeat scroll 0% 0%, linear-gradient(135deg, rgb(241 22 168) 10%, rgb(49 5 209 / 0%) 80%) repeat scroll 0% 0%, linear-gradient(190deg, rgb(26 211 208) 10%, rgb(10 219 216 / 0%) 80%) repeat scroll 0% 0%, rgb(0 0 0 / 0%) linear-gradient(315deg, rgb(163 34 203) 100%, rgb(9 245 5 / 0%) 70%) repeat scroll 0% 0%;
8
+ $hfb: transparent;
9
+ $gvb: rgb(255 255 255 / 36%);
10
+ $npw: rgb(255 255 255 / 20%);
11
+ $hcx: $theme_color_jqv;
12
+ $hev: #bbb;
13
+ $hyn: rgb(255 255 255 / 50%);
14
+ $fxm: rgb(255 255 255 / 37.5%);
15
+ $nur: rgb(255 255 255 / 20.8%);
16
+ $yuv: rgb(255 255 255 / 60%);
17
+ $vqo: $theme_color_jqv;
18
+ $lpe: white;
19
+ $rbp: $black;
20
+ $mdc: #d9d9d9;
21
+ $yos: #39c2db;
22
+ $nep: #90efff;
23
+ $htm: #ffa96c;
24
+ $qgp: #3ea559;
25
+ $hyv: #66ff8e;
26
+ $ycp: #19f4ff;
27
+ $iub: #2e8cff;
28
+ $cop: #4bff1f;
29
+ $yun: #14bf0a;
30
+ $ptn: #20f;
31
+ $dwk: #d046e9;
32
+ $uzf: #fbff12;
33
+ $hap: #f17442;
34
+ $rqb: #ff471a;
35
+ $suc: #d0111a;
36
+ $dfp: #842fa9;
37
+ $nqp: rgb(244 96 62 / 99%);
38
+ $hgb: rgb(255 77 85 / 99%);
@@ -1,14 +1,48 @@
1
- $htc: white;
2
- $gaq: #efefef;
3
- $hev: #bbb;
4
- $lpe: $black;
5
- $yos: #90efff;
1
+ $theme_color_ynq: white;
2
+ $theme_color_ytb: #efefef;
3
+ $theme_color_hbt: #bbb;
4
+ $theme_color_kdc: $black;
5
+ $theme_color_ecm: #66ff8e;
6
+ $theme_color_uvr: #90efff;
7
+ $theme_color_kxn: #2e8cff;
8
+ $theme_color_tjn: #14bf0a;
9
+ $theme_color_bvc: #d046e9;
10
+ $theme_color_wnc: #f17442;
11
+ $theme_color_yhn: #d0111a;
12
+ $theme_color_gsl: rgb(255 77 85 / 99%);
13
+
14
+ $htc: $theme_color_ynq;
15
+ $tbn: $theme_color_ynq;
16
+ $gaq: $theme_color_ytb;
17
+ $gqb: $theme_color_ytb;
18
+ $hfb: $theme_color_ytb;
19
+ $gvb: $theme_color_ytb;
20
+ $npw: $theme_color_ytb;
21
+ $hcx: $theme_color_ytb;
22
+ $hev: $theme_color_hbt;
23
+ $hyn: $theme_color_hbt;
24
+ $fxm: $theme_color_hbt;
25
+ $nur: $theme_color_hbt;
26
+ $yuv: $theme_color_hbt;
27
+ $vqo: $theme_color_hbt;
28
+ $lpe: $theme_color_kdc;
29
+ $rbp: $theme_color_kdc;
30
+ $mdc: #878787;
31
+ $yos: $theme_color_uvr;
32
+ $nep: $theme_color_uvr;
6
33
  $htm: #ffa96c;
7
- $qgp: #66ff8e;
8
- $ycp: #2e8cff;
9
- $cop: #14bf0a;
10
- $ptn: #ca26dd;
11
- $uzf: #e8720c;
12
- $rqb: #d0111a;
34
+ $qgp: $theme_color_ecm;
35
+ $hyv: $theme_color_ecm;
36
+ $ycp: $theme_color_kxn;
37
+ $iub: $theme_color_kxn;
38
+ $cop: $theme_color_tjn;
39
+ $yun: $theme_color_tjn;
40
+ $ptn: $theme_color_bvc;
41
+ $dwk: $theme_color_bvc;
42
+ $uzf: $theme_color_wnc;
43
+ $hap: $theme_color_wnc;
44
+ $rqb: $theme_color_yhn;
45
+ $suc: $theme_color_yhn;
13
46
  $dfp: #a2d4ff;
14
- $nqp: rgb(255 77 85 / 99%);
47
+ $nqp: $theme_color_gsl;
48
+ $hgb: $theme_color_gsl;
@@ -1,14 +1,48 @@
1
- $htc: #0a0e14;
2
- $gaq: #000308;
3
- $hev: #1f2c40;
4
- $lpe: #e5e5e5;
5
- $yos: #0e2e54;
1
+ $theme_color_ynq: #0a0e14;
2
+ $theme_color_ytb: #000308;
3
+ $theme_color_hbt: #1f2c40;
4
+ $theme_color_kdc: #e5e5e5;
5
+ $theme_color_ecm: #133e10;
6
+ $theme_color_uvr: #0e2e54;
7
+ $theme_color_kxn: #2176de;
8
+ $theme_color_tjn: #089200;
9
+ $theme_color_bvc: #af22bf;
10
+ $theme_color_wnc: #c96b00;
11
+ $theme_color_yhn: #b1131a;
12
+ $theme_color_gsl: rgb(120 30 34 / 99%);
13
+
14
+ $htc: $theme_color_ynq;
15
+ $tbn: $theme_color_ynq;
16
+ $gaq: $theme_color_ytb;
17
+ $gqb: $theme_color_ytb;
18
+ $hfb: $theme_color_ytb;
19
+ $gvb: $theme_color_ytb;
20
+ $npw: $theme_color_ytb;
21
+ $hcx: $theme_color_ytb;
22
+ $hev: $theme_color_hbt;
23
+ $hyn: $theme_color_hbt;
24
+ $fxm: $theme_color_hbt;
25
+ $nur: $theme_color_hbt;
26
+ $yuv: $theme_color_hbt;
27
+ $vqo: $theme_color_hbt;
28
+ $lpe: $theme_color_kdc;
29
+ $rbp: $theme_color_kdc;
30
+ $mdc: #8d8d8d;
31
+ $yos: $theme_color_uvr;
32
+ $nep: $theme_color_uvr;
6
33
  $htm: #583013;
7
- $qgp: #133e10;
8
- $ycp: #2176de;
9
- $cop: #089200;
10
- $ptn: #af22bf;
11
- $uzf: #c96b00;
12
- $rqb: #b1131a;
34
+ $qgp: $theme_color_ecm;
35
+ $hyv: $theme_color_ecm;
36
+ $ycp: $theme_color_kxn;
37
+ $iub: $theme_color_kxn;
38
+ $cop: $theme_color_tjn;
39
+ $yun: $theme_color_tjn;
40
+ $ptn: $theme_color_bvc;
41
+ $dwk: $theme_color_bvc;
42
+ $uzf: $theme_color_wnc;
43
+ $hap: $theme_color_wnc;
44
+ $rqb: $theme_color_yhn;
45
+ $suc: $theme_color_yhn;
13
46
  $dfp: #0f1721;
14
- $nqp: rgb(120 30 34 / 99%);
47
+ $nqp: $theme_color_gsl;
48
+ $hgb: $theme_color_gsl;
@@ -0,0 +1,9 @@
1
+ @import '../../vars';
2
+ @import '../../mixins';
3
+ @import '../../functions';
4
+ @import '../colors/aqua';
5
+ @import 'template';
6
+
7
+ body .main_2.settings {
8
+ @include glass;
9
+ }
@@ -1,7 +1,9 @@
1
1
  @import '../../vars';
2
+ @import '../../mixins';
3
+ @import '../../functions';
2
4
  @import '../colors/dark';
3
5
  @import 'template';
4
6
 
5
7
  .main_2 {
6
- box-shadow: rgb(0 115 255 / 100%) 0 0 33px, rgb(255 255 255 / 40%) 0 0 10px;
8
+ box-shadow: $blue_neon_dark;
7
9
  }
@@ -0,0 +1,9 @@
1
+ @import '../../vars';
2
+ @import '../../mixins';
3
+ @import '../../functions';
4
+ @import '../colors/lavender';
5
+ @import 'template';
6
+
7
+ body .main_2.settings {
8
+ @include glass;
9
+ }
@@ -1,7 +1,9 @@
1
1
  @import '../../vars';
2
+ @import '../../mixins';
3
+ @import '../../functions';
2
4
  @import '../colors/light';
3
5
  @import 'template';
4
6
 
5
7
  .main_2 {
6
- box-shadow: rgb(0 0 0 / 30%) 0 0 30px, rgb(0 0 0 / 30%) 0 4px 8px;
8
+ box-shadow: $black_shadow;
7
9
  }