jobdone-shared-files 1.0.24 → 1.0.31

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 (34) hide show
  1. package/ProjectManagement/projectNavbar.vue +363 -363
  2. package/ProjectManagement/projectNavbarV2.vue +362 -0
  3. package/README.md +9 -8
  4. package/autocompleteSelect.vue +465 -461
  5. package/common/directives/collapse.js +12 -12
  6. package/common/directives/popovers.js +10 -10
  7. package/common/directives/selectPlaceholder.js +52 -52
  8. package/common/directives/textareaAutoHeight.js +10 -10
  9. package/common/directives/tooltip.js +10 -10
  10. package/common/format.js +26 -26
  11. package/index.js +14 -14
  12. package/lightboxWithOverview.vue +156 -156
  13. package/package.json +19 -19
  14. package/paginate.vue +141 -141
  15. package/style/css/vue-loading-overlay/index.css +40 -40
  16. package/style/scss/Common/Animation.scss +9 -9
  17. package/style/scss/Common/SelectableTable.scss +36 -36
  18. package/style/scss/Common/filepond.scss +31 -31
  19. package/style/scss/Common/thumbnail-group.scss +14 -14
  20. package/style/scss/Layout/LayoutBase.scss +1032 -1032
  21. package/style/scss/Layout/LayoutInnerColumn.scss +263 -263
  22. package/style/scss/Layout/LayoutProject.scss +126 -126
  23. package/style/scss/Layout/LayoutSinglePage.scss +17 -17
  24. package/style/scss/Layout/LayoutTwoColumn.scss +60 -60
  25. package/style/scss/Settings/_Mixins.scss +232 -232
  26. package/style/scss/Settings/_MobileVariables.scss +11 -11
  27. package/style/scss/Settings/_bs-variables-dark.scss +70 -70
  28. package/style/scss/Settings/_bs-variables.scss +1743 -1743
  29. package/style/scss/Settings/_color-mode.scss +122 -122
  30. package/style/scss/Settings/_custom-variables.scss +10 -10
  31. package/tagEditor.vue +249 -249
  32. package/tree.vue +71 -71
  33. package/treeItem.vue +358 -358
  34. package/vueLoadingOverlay.vue +74 -74
@@ -1,232 +1,232 @@
1
- // ====================================
2
- // Custom Mixins 清單 (依順序排序)
3
- // ====================================
4
-
5
- // Layout 各種置中方法
6
- // scrollbar樣式
7
-
8
- // 尺寸設定: rwd-square / size / solid-size
9
- // Text: 文字溢排
10
- // List Style: 數字標號
11
-
12
- // Image 背景 2x 3x 設定
13
-
14
- // ====================================
15
- // Layout 各種置中方法
16
- // ====================================
17
-
18
- // 使用 flex 上下左右置中
19
- @mixin flex-center() {
20
- display: flex;
21
- justify-content: center;
22
- align-items: center;
23
- }
24
-
25
- // 使用 position 上下左右置中
26
- @mixin position-center() {
27
- position: absolute;
28
- top: 0;
29
- left: 0;
30
- right: 0;
31
- bottom: 0;
32
- margin: auto;
33
- }
34
-
35
- // 使用inline-block:before垂直至中
36
- @mixin vertical-middle() {
37
- // 加在父層
38
- &:before {
39
- content: "";
40
- display: inline-block;
41
- vertical-align: middle;
42
- width: 0;
43
- height: 100%;
44
- }
45
- }
46
-
47
- @mixin vertical-middle-item() {
48
- // 加在要置中的項目
49
- display: inline-block;
50
- vertical-align: middle;
51
- }
52
-
53
-
54
- // ====================================
55
- // scrollbar樣式
56
- // ====================================
57
-
58
- // 自訂變數 (--scrollbar-width) 在 "LayoutBase" 中設定
59
- @mixin scrollbar(
60
- $background: var(--gray-200),
61
- $default-color: var(--gray-500),
62
- $hover-color: var(--bs-primary),
63
- $width: var(--scrollbar-width),
64
- $height: var(--scrollbar-width),
65
- $border-radius: var(--scrollbar-width),
66
- $y: auto,
67
- $x: hidden
68
- ) {
69
- overflow-y: $y;
70
- overflow-x: $x;
71
-
72
- // Chrome 121 / Edge 121 / FireFox
73
- @supports (scrollbar-width: auto) {
74
- scrollbar-width: auto;
75
- scrollbar-color: $default-color $background;
76
- &:hover{
77
- scrollbar-color: $hover-color $background;
78
- }
79
- }
80
-
81
- @supports selector(::-webkit-scrollbar) {
82
- &::-webkit-scrollbar-thumb {
83
- background-color: $default-color;
84
- border-radius: $border-radius;
85
- }
86
- &::-webkit-scrollbar,
87
- &::-webkit-scrollbar-track {
88
- background-color: $background;
89
- }
90
- &::-webkit-scrollbar {
91
- width: $width;
92
- height: $height;
93
- }
94
- &:hover {
95
- &::-webkit-scrollbar,
96
- &::-webkit-scrollbar-thumb {
97
- background-color: $hover-color;
98
- }
99
- }
100
- }
101
-
102
- }
103
-
104
- // ====================================
105
- // 尺寸設定: rwd-square / size / solid-width
106
- // ====================================
107
-
108
- @mixin rwd-square($size) {
109
- width: $size;
110
- height: auto;
111
- &:before {
112
- content: "";
113
- display: block;
114
- padding-bottom: 100%;
115
- }
116
- }
117
-
118
- @mixin size($w, $h: $w) {
119
- width: $w;
120
- height: $h;
121
- }
122
-
123
- @mixin solid-size($w, $h: $w) {
124
- width: $w;
125
- max-width: $w;
126
- min-width: $w;
127
- height: $h;
128
- }
129
-
130
- // ====================================
131
- // Text: 文字溢排
132
- // ====================================
133
-
134
- // 單行
135
- @mixin text-overflow() {
136
- overflow: hidden;
137
- text-overflow: ellipsis;
138
- white-space: nowrap;
139
- }
140
-
141
- // 多行
142
- @mixin text-line-clamp($line-clamp) {
143
- display: -webkit-box;
144
- -webkit-line-clamp: $line-clamp;
145
- -webkit-box-orient: vertical;
146
- overflow: hidden;
147
- }
148
-
149
- // ====================================
150
- // List Style: 數字標號
151
- // ====================================
152
-
153
- // 數字標號
154
- @mixin list-counter() {
155
- list-style-type: none;
156
- padding: 0;
157
- margin: auto;
158
- li {
159
- counter-increment: step-counter;
160
- &:before {
161
- content: counter(step-counter);
162
- display: inline-block;
163
- vertical-align: top;
164
- font-size: 16px;
165
- text-align: center;
166
- }
167
- }
168
- }
169
-
170
- // ====================================
171
- // Image 背景 2x 3x 設定
172
- // ====================================
173
- @mixin background-image-retina($file, $type) {
174
- background-image: url($file + "." + $type);
175
- @media screen and (-webkit-min-device-pixel-ratio: 2),
176
- (-moz-min-device-pixel-ratio: 2),
177
- screen and (min--moz-device-pixel-ratio: 2) {
178
- background-image: url($file + "@2x." + $type);
179
- }
180
- @media screen and (-webkit-min-device-pixel-ratio: 3),
181
- (-moz-min-device-pixel-ratio: 3),
182
- screen and (min--moz-device-pixel-ratio: 3) {
183
- background-image: url($file + "@3x." + $type);
184
- }
185
- }
186
-
187
- @mixin background-image-retina-amp($file, $type) {
188
- background-image: url($file + "." + $type);
189
- @media screen and (-webkit-min-device-pixel-ratio: 2),
190
- (-moz-min-device-pixel-ratio: 2),
191
- screen and (min-resolution: 2dppx) {
192
- background-image: url($file + "@2x." + $type);
193
- }
194
- @media screen and (-webkit-min-device-pixel-ratio: 3),
195
- (-moz-min-device-pixel-ratio: 3),
196
- screen and (min-resolution: 3dppx) {
197
- background-image: url($file + "@3x." + $type);
198
- }
199
- }
200
-
201
- // ====================================
202
- // Construction Mixins
203
- // ====================================
204
-
205
- @mixin tableHeadTH() {
206
- border-radius: 0;
207
- background-color: $gray-200;
208
- font-size: 0.85rem;
209
- font-weight: normal;
210
- letter-spacing: 0.5px;
211
- color: $gray-600;
212
- padding-left: 0.75rem;
213
- }
214
-
215
- @mixin tableTdNum() {
216
- color: $gray-500;
217
- font-size: 0.85rem;
218
- vertical-align: middle !important;
219
- }
220
-
221
- // TODO: 待刪除,已改成 LayoutBase 的 .btn-link-light-bg
222
- @mixin linkBtn() {
223
- text-decoration: none;
224
- letter-spacing: 0.5px;
225
- display: flex;
226
- align-items: center;
227
- margin-right: 0.5rem;
228
- &:hover {
229
- color: $primary;
230
- background-color: rgba($primary, 0.1);
231
- }
232
- }
1
+ // ====================================
2
+ // Custom Mixins 清單 (依順序排序)
3
+ // ====================================
4
+
5
+ // Layout 各種置中方法
6
+ // scrollbar樣式
7
+
8
+ // 尺寸設定: rwd-square / size / solid-size
9
+ // Text: 文字溢排
10
+ // List Style: 數字標號
11
+
12
+ // Image 背景 2x 3x 設定
13
+
14
+ // ====================================
15
+ // Layout 各種置中方法
16
+ // ====================================
17
+
18
+ // 使用 flex 上下左右置中
19
+ @mixin flex-center() {
20
+ display: flex;
21
+ justify-content: center;
22
+ align-items: center;
23
+ }
24
+
25
+ // 使用 position 上下左右置中
26
+ @mixin position-center() {
27
+ position: absolute;
28
+ top: 0;
29
+ left: 0;
30
+ right: 0;
31
+ bottom: 0;
32
+ margin: auto;
33
+ }
34
+
35
+ // 使用inline-block:before垂直至中
36
+ @mixin vertical-middle() {
37
+ // 加在父層
38
+ &:before {
39
+ content: "";
40
+ display: inline-block;
41
+ vertical-align: middle;
42
+ width: 0;
43
+ height: 100%;
44
+ }
45
+ }
46
+
47
+ @mixin vertical-middle-item() {
48
+ // 加在要置中的項目
49
+ display: inline-block;
50
+ vertical-align: middle;
51
+ }
52
+
53
+
54
+ // ====================================
55
+ // scrollbar樣式
56
+ // ====================================
57
+
58
+ // 自訂變數 (--scrollbar-width) 在 "LayoutBase" 中設定
59
+ @mixin scrollbar(
60
+ $background: var(--gray-200),
61
+ $default-color: var(--gray-500),
62
+ $hover-color: var(--bs-primary),
63
+ $width: var(--scrollbar-width),
64
+ $height: var(--scrollbar-width),
65
+ $border-radius: var(--scrollbar-width),
66
+ $y: auto,
67
+ $x: hidden
68
+ ) {
69
+ overflow-y: $y;
70
+ overflow-x: $x;
71
+
72
+ // Chrome 121 / Edge 121 / FireFox
73
+ @supports (scrollbar-width: auto) {
74
+ scrollbar-width: auto;
75
+ scrollbar-color: $default-color $background;
76
+ &:hover{
77
+ scrollbar-color: $hover-color $background;
78
+ }
79
+ }
80
+
81
+ @supports selector(::-webkit-scrollbar) {
82
+ &::-webkit-scrollbar-thumb {
83
+ background-color: $default-color;
84
+ border-radius: $border-radius;
85
+ }
86
+ &::-webkit-scrollbar,
87
+ &::-webkit-scrollbar-track {
88
+ background-color: $background;
89
+ }
90
+ &::-webkit-scrollbar {
91
+ width: $width;
92
+ height: $height;
93
+ }
94
+ &:hover {
95
+ &::-webkit-scrollbar,
96
+ &::-webkit-scrollbar-thumb {
97
+ background-color: $hover-color;
98
+ }
99
+ }
100
+ }
101
+
102
+ }
103
+
104
+ // ====================================
105
+ // 尺寸設定: rwd-square / size / solid-width
106
+ // ====================================
107
+
108
+ @mixin rwd-square($size) {
109
+ width: $size;
110
+ height: auto;
111
+ &:before {
112
+ content: "";
113
+ display: block;
114
+ padding-bottom: 100%;
115
+ }
116
+ }
117
+
118
+ @mixin size($w, $h: $w) {
119
+ width: $w;
120
+ height: $h;
121
+ }
122
+
123
+ @mixin solid-size($w, $h: $w) {
124
+ width: $w;
125
+ max-width: $w;
126
+ min-width: $w;
127
+ height: $h;
128
+ }
129
+
130
+ // ====================================
131
+ // Text: 文字溢排
132
+ // ====================================
133
+
134
+ // 單行
135
+ @mixin text-overflow() {
136
+ overflow: hidden;
137
+ text-overflow: ellipsis;
138
+ white-space: nowrap;
139
+ }
140
+
141
+ // 多行
142
+ @mixin text-line-clamp($line-clamp) {
143
+ display: -webkit-box;
144
+ -webkit-line-clamp: $line-clamp;
145
+ -webkit-box-orient: vertical;
146
+ overflow: hidden;
147
+ }
148
+
149
+ // ====================================
150
+ // List Style: 數字標號
151
+ // ====================================
152
+
153
+ // 數字標號
154
+ @mixin list-counter() {
155
+ list-style-type: none;
156
+ padding: 0;
157
+ margin: auto;
158
+ li {
159
+ counter-increment: step-counter;
160
+ &:before {
161
+ content: counter(step-counter);
162
+ display: inline-block;
163
+ vertical-align: top;
164
+ font-size: 16px;
165
+ text-align: center;
166
+ }
167
+ }
168
+ }
169
+
170
+ // ====================================
171
+ // Image 背景 2x 3x 設定
172
+ // ====================================
173
+ @mixin background-image-retina($file, $type) {
174
+ background-image: url($file + "." + $type);
175
+ @media screen and (-webkit-min-device-pixel-ratio: 2),
176
+ (-moz-min-device-pixel-ratio: 2),
177
+ screen and (min--moz-device-pixel-ratio: 2) {
178
+ background-image: url($file + "@2x." + $type);
179
+ }
180
+ @media screen and (-webkit-min-device-pixel-ratio: 3),
181
+ (-moz-min-device-pixel-ratio: 3),
182
+ screen and (min--moz-device-pixel-ratio: 3) {
183
+ background-image: url($file + "@3x." + $type);
184
+ }
185
+ }
186
+
187
+ @mixin background-image-retina-amp($file, $type) {
188
+ background-image: url($file + "." + $type);
189
+ @media screen and (-webkit-min-device-pixel-ratio: 2),
190
+ (-moz-min-device-pixel-ratio: 2),
191
+ screen and (min-resolution: 2dppx) {
192
+ background-image: url($file + "@2x." + $type);
193
+ }
194
+ @media screen and (-webkit-min-device-pixel-ratio: 3),
195
+ (-moz-min-device-pixel-ratio: 3),
196
+ screen and (min-resolution: 3dppx) {
197
+ background-image: url($file + "@3x." + $type);
198
+ }
199
+ }
200
+
201
+ // ====================================
202
+ // Construction Mixins
203
+ // ====================================
204
+
205
+ @mixin tableHeadTH() {
206
+ border-radius: 0;
207
+ background-color: $gray-200;
208
+ font-size: 0.85rem;
209
+ font-weight: normal;
210
+ letter-spacing: 0.5px;
211
+ color: $gray-600;
212
+ padding-left: 0.75rem;
213
+ }
214
+
215
+ @mixin tableTdNum() {
216
+ color: $gray-500;
217
+ font-size: 0.85rem;
218
+ vertical-align: middle !important;
219
+ }
220
+
221
+ // TODO: 待刪除,已改成 LayoutBase 的 .btn-link-light-bg
222
+ @mixin linkBtn() {
223
+ text-decoration: none;
224
+ letter-spacing: 0.5px;
225
+ display: flex;
226
+ align-items: center;
227
+ margin-right: 0.5rem;
228
+ &:hover {
229
+ color: $primary;
230
+ background-color: rgba($primary, 0.1);
231
+ }
232
+ }
@@ -1,12 +1,12 @@
1
- $safe-area-inset-top: env(safe-area-inset-top);
2
- $safe-area-inset-bottom: env(safe-area-inset-bottom);
3
-
4
- $gradient-bg: linear-gradient(138deg, rgba(100, 148, 241, 0.05) 26.2%, rgba(165, 185, 255, 0.29) 88.06%), var(--gray-000);
5
-
6
- $gradient-main: linear-gradient(270deg, #647AF1 33.33%, #0084E4 100%);
7
- $gradient-main-translucent: linear-gradient(270deg, rgba(63, 90, 233, 0.8) 33.33%, rgba(0, 130, 220, 0.8) 100%);
8
-
9
- $gradient-glow: linear-gradient(131deg, rgba(17, 198, 245, 0.55) 0%, rgba(24, 196, 255, 0.00) 100%);
10
- $gradient-glow-2end: linear-gradient(131deg, rgba(17, 198, 245, 0.20) 0%, rgba(24, 196, 255, 0.00) 45.31%, rgba(17, 198, 245, 0.20) 100%);
11
-
1
+ $safe-area-inset-top: env(safe-area-inset-top);
2
+ $safe-area-inset-bottom: env(safe-area-inset-bottom);
3
+
4
+ $gradient-bg: linear-gradient(138deg, rgba(100, 148, 241, 0.05) 26.2%, rgba(165, 185, 255, 0.29) 88.06%), var(--gray-000);
5
+
6
+ $gradient-main: linear-gradient(270deg, #647AF1 33.33%, #0084E4 100%);
7
+ $gradient-main-translucent: linear-gradient(270deg, rgba(63, 90, 233, 0.8) 33.33%, rgba(0, 130, 220, 0.8) 100%);
8
+
9
+ $gradient-glow: linear-gradient(131deg, rgba(17, 198, 245, 0.55) 0%, rgba(24, 196, 255, 0.00) 100%);
10
+ $gradient-glow-2end: linear-gradient(131deg, rgba(17, 198, 245, 0.20) 0%, rgba(24, 196, 255, 0.00) 45.31%, rgba(17, 198, 245, 0.20) 100%);
11
+
12
12
  $backdrop-blur-base: blur(5px);
@@ -1,70 +1,70 @@
1
- // Dark color mode variables
2
- //
3
- // Custom variables for the `[data-bs-theme="dark"]` theme. Use this as a starting point for your own custom color modes by creating a new theme-specific file like `_variables-dark.scss` and adding the variables you need.
4
-
5
- //
6
- // Global colors
7
- //
8
-
9
- // scss-docs-start sass-dark-mode-vars
10
- $primary-text-dark: $blue-300 !default;
11
- $secondary-text-dark: $gray-300 !default;
12
- $success-text-dark: $green-300 !default;
13
- $info-text-dark: $cyan-300 !default;
14
- $warning-text-dark: $yellow-300 !default;
15
- $danger-text-dark: $red-300 !default;
16
- $light-text-dark: $gray-100 !default;
17
- $dark-text-dark: $gray-300 !default;
18
-
19
- $primary-bg-subtle-dark: $blue-900 !default;
20
- $secondary-bg-subtle-dark: $gray-900 !default;
21
- $success-bg-subtle-dark: $green-900 !default;
22
- $info-bg-subtle-dark: $cyan-900 !default;
23
- $warning-bg-subtle-dark: $yellow-900 !default;
24
- $danger-bg-subtle-dark: $red-900 !default;
25
- $light-bg-subtle-dark: $gray-800 !default;
26
- $dark-bg-subtle-dark: mix($gray-800, $black) !default;
27
-
28
- $primary-border-subtle-dark: $blue-700 !default;
29
- $secondary-border-subtle-dark: $gray-700 !default;
30
- $success-border-subtle-dark: $green-700 !default;
31
- $info-border-subtle-dark: $cyan-800 !default;
32
- $warning-border-subtle-dark: $yellow-800 !default;
33
- $danger-border-subtle-dark: $red-700 !default;
34
- $light-border-subtle-dark: $gray-700 !default;
35
- $dark-border-subtle-dark: $gray-800 !default;
36
-
37
- $body-color-dark: $gray-500 !default;
38
- $body-bg-dark: $gray-900 !default;
39
- $body-emphasis-color-dark: $gray-100 !default;
40
- $body-secondary-color-dark: rgba($body-color-dark, .75) !default;
41
- $body-secondary-bg-dark: $gray-800 !default;
42
- $body-tertiary-color-dark: rgba($body-color-dark, .5) !default;
43
- $body-tertiary-bg-dark: mix($gray-800, $gray-900, 50%) !default;
44
- $emphasis-color-dark: $white !default;
45
- $border-color-dark: $gray-700 !default;
46
- $border-color-translucent-dark: rgba($white, .15) !default;
47
- $headings-color-dark: #fff !default;
48
- $link-color-dark: $blue-300 !default;
49
- $link-hover-color-dark: $blue-200 !default;
50
- $code-color-dark: $pink-300 !default;
51
-
52
-
53
- //
54
- // Forms
55
- //
56
-
57
- $form-select-indicator-color-dark: $body-color-dark !default;
58
- $form-select-indicator-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$form-select-indicator-color-dark}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>") !default;
59
-
60
- $form-switch-color-dark: rgba($white, .25) !default;
61
- $form-switch-bg-image-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color-dark}'/></svg>") !default;
62
-
63
-
64
- //
65
- // Accordion
66
- //
67
-
68
- $accordion-button-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$primary-text-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !default;
69
- $accordion-button-active-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$primary-text-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !default;
70
- // scss-docs-end sass-dark-mode-vars
1
+ // Dark color mode variables
2
+ //
3
+ // Custom variables for the `[data-bs-theme="dark"]` theme. Use this as a starting point for your own custom color modes by creating a new theme-specific file like `_variables-dark.scss` and adding the variables you need.
4
+
5
+ //
6
+ // Global colors
7
+ //
8
+
9
+ // scss-docs-start sass-dark-mode-vars
10
+ $primary-text-dark: $blue-300 !default;
11
+ $secondary-text-dark: $gray-300 !default;
12
+ $success-text-dark: $green-300 !default;
13
+ $info-text-dark: $cyan-300 !default;
14
+ $warning-text-dark: $yellow-300 !default;
15
+ $danger-text-dark: $red-300 !default;
16
+ $light-text-dark: $gray-100 !default;
17
+ $dark-text-dark: $gray-300 !default;
18
+
19
+ $primary-bg-subtle-dark: $blue-900 !default;
20
+ $secondary-bg-subtle-dark: $gray-900 !default;
21
+ $success-bg-subtle-dark: $green-900 !default;
22
+ $info-bg-subtle-dark: $cyan-900 !default;
23
+ $warning-bg-subtle-dark: $yellow-900 !default;
24
+ $danger-bg-subtle-dark: $red-900 !default;
25
+ $light-bg-subtle-dark: $gray-800 !default;
26
+ $dark-bg-subtle-dark: mix($gray-800, $black) !default;
27
+
28
+ $primary-border-subtle-dark: $blue-700 !default;
29
+ $secondary-border-subtle-dark: $gray-700 !default;
30
+ $success-border-subtle-dark: $green-700 !default;
31
+ $info-border-subtle-dark: $cyan-800 !default;
32
+ $warning-border-subtle-dark: $yellow-800 !default;
33
+ $danger-border-subtle-dark: $red-700 !default;
34
+ $light-border-subtle-dark: $gray-700 !default;
35
+ $dark-border-subtle-dark: $gray-800 !default;
36
+
37
+ $body-color-dark: $gray-500 !default;
38
+ $body-bg-dark: $gray-900 !default;
39
+ $body-emphasis-color-dark: $gray-100 !default;
40
+ $body-secondary-color-dark: rgba($body-color-dark, .75) !default;
41
+ $body-secondary-bg-dark: $gray-800 !default;
42
+ $body-tertiary-color-dark: rgba($body-color-dark, .5) !default;
43
+ $body-tertiary-bg-dark: mix($gray-800, $gray-900, 50%) !default;
44
+ $emphasis-color-dark: $white !default;
45
+ $border-color-dark: $gray-700 !default;
46
+ $border-color-translucent-dark: rgba($white, .15) !default;
47
+ $headings-color-dark: #fff !default;
48
+ $link-color-dark: $blue-300 !default;
49
+ $link-hover-color-dark: $blue-200 !default;
50
+ $code-color-dark: $pink-300 !default;
51
+
52
+
53
+ //
54
+ // Forms
55
+ //
56
+
57
+ $form-select-indicator-color-dark: $body-color-dark !default;
58
+ $form-select-indicator-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$form-select-indicator-color-dark}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>") !default;
59
+
60
+ $form-switch-color-dark: rgba($white, .25) !default;
61
+ $form-switch-bg-image-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color-dark}'/></svg>") !default;
62
+
63
+
64
+ //
65
+ // Accordion
66
+ //
67
+
68
+ $accordion-button-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$primary-text-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !default;
69
+ $accordion-button-active-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$primary-text-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !default;
70
+ // scss-docs-end sass-dark-mode-vars