@appscode/design-system 2.0.41-alpha.9 → 2.0.41

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 (63) hide show
  1. package/main.scss +2 -0
  2. package/package.json +1 -1
  3. package/plugins/theme.js +10 -32
  4. package/vue-components/styles/base/utilities/_all.scss +3 -1
  5. package/vue-components/styles/base/utilities/_colors.scss +10 -257
  6. package/vue-components/styles/base/utilities/_customize-bulma.scss +1 -1
  7. package/vue-components/styles/base/utilities/_extended.scss +2 -2
  8. package/vue-components/styles/base/utilities/_generate-color-classes.scss +253 -0
  9. package/vue-components/styles/base/utilities/_global.scss +6 -4
  10. package/vue-components/styles/base/utilities/_root-variables.scss +5 -0
  11. package/vue-components/styles/base/utilities/_typography.scss +20 -3
  12. package/vue-components/styles/components/_ac-calendar.scss +1 -1
  13. package/vue-components/styles/components/_ac-tags.scss +2 -2
  14. package/vue-components/styles/components/_accordion.scss +1 -1
  15. package/vue-components/styles/components/_button.scss +29 -4
  16. package/vue-components/styles/components/_direct-deploy.scss +1 -1
  17. package/vue-components/styles/components/_dropdown.scss +1 -1
  18. package/vue-components/styles/components/_getkeeper.scss +1 -1
  19. package/vue-components/styles/components/_options.scss +3 -3
  20. package/vue-components/styles/components/_overview-page.scss +1 -1
  21. package/vue-components/styles/components/_pagination.scss +5 -5
  22. package/vue-components/styles/components/_preloader.scss +1 -1
  23. package/vue-components/styles/components/_preview-modal.scss +2 -2
  24. package/vue-components/styles/components/_progress-bar.scss +7 -7
  25. package/vue-components/styles/components/_table.scss +13 -13
  26. package/vue-components/styles/components/_tabs.scss +13 -13
  27. package/vue-components/styles/components/_terminal.scss +2 -2
  28. package/vue-components/styles/components/_widget-menu.scss +2 -2
  29. package/vue-components/styles/components/_wizard.scss +3 -3
  30. package/vue-components/styles/components/alert/_alert-message.scss +7 -0
  31. package/vue-components/styles/components/alert/_alert.scss +8 -8
  32. package/vue-components/styles/components/bbum/_card-team.scss +1 -1
  33. package/vue-components/styles/components/bbum/_left-sidebar.scss +2 -2
  34. package/vue-components/styles/components/bbum/_single-post-preview.scss +2 -2
  35. package/vue-components/styles/components/bbum/_user-profile.scss +2 -2
  36. package/vue-components/styles/components/cards/_cluster.scss +5 -4
  37. package/vue-components/styles/components/cards/_info.scss +7 -1
  38. package/vue-components/styles/components/cards/_monitoring.scss +1 -0
  39. package/vue-components/styles/components/cards/_org.scss +2 -2
  40. package/vue-components/styles/components/cards/_payment-card.scss +3 -3
  41. package/vue-components/styles/components/cards/_vendor.scss +5 -5
  42. package/vue-components/styles/components/editor/_filtered-file-editor.scss +2 -2
  43. package/vue-components/styles/components/form-fields/_input-card.scss +4 -4
  44. package/vue-components/styles/components/form-fields/_input.scss +15 -10
  45. package/vue-components/styles/components/header/_header.scss +1 -1
  46. package/vue-components/styles/components/navbar/_menu-content.scss +4 -4
  47. package/vue-components/styles/components/navbar/_notification.scss +3 -3
  48. package/vue-components/styles/components/select-box/_ac-select-box.scss +1 -1
  49. package/vue-components/styles/components/select-box/_multi-select.scss +3 -3
  50. package/vue-components/styles/components/sidebar/_left-sidebar.scss +2 -2
  51. package/vue-components/styles/components/sidebar-tabs/_sidebar-tabs.scss +3 -3
  52. package/vue-components/styles/components/ui-builder/_ui-builder.scss +9 -9
  53. package/vue-components/styles/components/ui-builder/_vue-open-api.scss +4 -4
  54. package/vue-components/styles/theme/_appscode.scss +9 -24
  55. package/vue-components/styles/theme/_dark.scss +48 -0
  56. package/vue-components/v2/pagination/Pagination.vue +4 -4
  57. package/vue-components/v3/alert/AlertMessage.vue +1 -1
  58. package/vue-components/v3/header/Header.vue +1 -1
  59. package/vue-components/v3/navbar/ThemeMode.vue +1 -1
  60. package/vue-components/v3/notification/AlertBox.vue +9 -9
  61. package/vue-components/v3/pagination/Pagination.vue +4 -4
  62. package/vue-components/v3/sidebar/Steps.vue +3 -3
  63. package/vue-components/v3/table/InfoTable.vue +1 -1
@@ -143,7 +143,7 @@
143
143
  }
144
144
 
145
145
  a {
146
- color: $primary;
146
+ color: $ac-primary;
147
147
  }
148
148
 
149
149
  .count-like-share {
@@ -238,7 +238,7 @@
238
238
  }
239
239
 
240
240
  &:hover {
241
- color: $primary;
241
+ color: $ac-primary;
242
242
  }
243
243
  }
244
244
  }
@@ -88,7 +88,7 @@
88
88
  margin-top: 20px;
89
89
 
90
90
  a {
91
- color: $primary;
91
+ color: $ac-primary;
92
92
  display: flex;
93
93
  align-items: center;
94
94
  margin-bottom: 10px;
@@ -117,7 +117,7 @@
117
117
  img {
118
118
  width: 120px;
119
119
  height: 120px;
120
- border: 2px solid $primary;
120
+ border: 2px solid $ac-primary;
121
121
  }
122
122
 
123
123
  figcaption {
@@ -1,4 +1,5 @@
1
1
  // cluster-card
2
+
2
3
  .card-details.cluster {
3
4
  border: 1px solid $color-border;
4
5
  padding: 24px 20px;
@@ -42,10 +43,10 @@
42
43
  h4 {
43
44
  font-size: 18px;
44
45
  line-height: 130%;
45
- color: #030d17;
46
+ color: $color-heading;
46
47
  }
47
48
  .icon {
48
- color: #0c365a;
49
+ color: $color-text;
49
50
  cursor: pointer;
50
51
  position: relative;
51
52
  z-index: 1;
@@ -84,11 +85,11 @@
84
85
 
85
86
  span {
86
87
  font-size: 11px;
87
- color: #666666;
88
+ color: $color-label;
88
89
  display: block;
89
90
  }
90
91
  strong {
91
- color: #061b2d;
92
+ color: $color-heading;
92
93
  font-size: 13px;
93
94
  font-weight: 400;
94
95
  }
@@ -62,7 +62,13 @@
62
62
  bottom: 0;
63
63
  width: 100%;
64
64
  height: 1px;
65
- background: linear-gradient(-45deg, $primary, $success, $warning, $danger);
65
+ background: linear-gradient(
66
+ -45deg,
67
+ $ac-primary,
68
+ $success,
69
+ $warning,
70
+ $danger
71
+ );
66
72
  background-size: 400% 400%;
67
73
  animation: gradient 3s ease infinite;
68
74
  }
@@ -5,6 +5,7 @@
5
5
  min-width: 290px;
6
6
  position: relative;
7
7
  border-radius: 2px;
8
+ background-color: $white-100;
8
9
 
9
10
  .required {
10
11
  position: absolute;
@@ -13,7 +13,7 @@
13
13
  }
14
14
 
15
15
  button.ac-button.is-text {
16
- color: $primary;
16
+ color: $ac-primary;
17
17
  transition: 0.3s ease-in-out;
18
18
  padding: 2px 0;
19
19
  height: auto;
@@ -23,7 +23,7 @@
23
23
  }
24
24
 
25
25
  &:hover:not(.no-data-available) {
26
- // border: 1px solid $primary;
26
+ // border: 1px solid $ac-primary;
27
27
  button.ac-button.is-text {
28
28
  gap: 16px;
29
29
  }
@@ -55,7 +55,7 @@
55
55
  width: 14px;
56
56
  height: 14px;
57
57
  background-color: $white-100;
58
- border: 1px solid $primary;
58
+ border: 1px solid $ac-primary;
59
59
  z-index: 1;
60
60
  border-radius: 50%;
61
61
  }
@@ -63,7 +63,7 @@
63
63
  &::before {
64
64
  width: 6px;
65
65
  height: 6px;
66
- background-color: $primary;
66
+ background-color: $ac-primary;
67
67
  border: none;
68
68
  left: 9px;
69
69
  top: 9px;
@@ -163,7 +163,7 @@
163
163
  color: $color-heading;
164
164
 
165
165
  &:hover {
166
- background-color: $primary;
166
+ background-color: $ac-primary;
167
167
  color: $color-heading;
168
168
  }
169
169
  }
@@ -6,7 +6,7 @@
6
6
  display: flex;
7
7
  flex-direction: column;
8
8
  justify-content: space-between;
9
- background-color: $primary-97;
9
+ background-color: $primary-light-grey;
10
10
  min-width: 215px;
11
11
  padding: 30px 20px 20px;
12
12
  cursor: pointer;
@@ -19,7 +19,7 @@
19
19
  font-weight: 500;
20
20
 
21
21
  &.free {
22
- color: $primary;
22
+ color: $ac-primary;
23
23
  }
24
24
  }
25
25
  }
@@ -42,15 +42,15 @@
42
42
  }
43
43
  }
44
44
  &.is-selected {
45
- border: 1px solid $primary !important;
45
+ border: 1px solid $ac-primary !important;
46
46
  }
47
47
  &:hover {
48
- border: 1px solid $primary;
48
+ border: 1px solid $ac-primary;
49
49
 
50
50
  .ac-card-title {
51
51
  h4 {
52
52
  a {
53
- color: $primary;
53
+ color: $ac-primary;
54
54
  }
55
55
  }
56
56
  }
@@ -18,7 +18,7 @@
18
18
  // }
19
19
 
20
20
  // &:hover {
21
- // background-color: $primary;
21
+ // background-color: $ac-primary;
22
22
  // }
23
23
  // }
24
24
 
@@ -111,7 +111,7 @@
111
111
  li {
112
112
  &.is-active {
113
113
  a {
114
- background-color: $primary;
114
+ background-color: $ac-primary;
115
115
  border-radius: 5px;
116
116
  color: $white-100;
117
117
  padding: 10px 10px;
@@ -48,7 +48,7 @@
48
48
  border: none;
49
49
 
50
50
  label {
51
- color: $primary !important;
51
+ color: $ac-primary !important;
52
52
  }
53
53
  }
54
54
 
@@ -72,7 +72,7 @@
72
72
  }
73
73
 
74
74
  .ac-single-radio .is-checkradio[type="radio"]:checked + label {
75
- color: $primary;
75
+ color: $ac-primary;
76
76
  }
77
77
 
78
78
  .ac-single-radio {
@@ -97,7 +97,7 @@
97
97
  }
98
98
 
99
99
  &.is-selected {
100
- border: 1px solid $primary;
100
+ border: 1px solid $ac-primary;
101
101
  }
102
102
 
103
103
  &:last-child {
@@ -188,7 +188,7 @@
188
188
  font-weight: 400;
189
189
 
190
190
  &:hover {
191
- color: $primary;
191
+ color: $ac-primary;
192
192
  }
193
193
  }
194
194
  }
@@ -31,11 +31,11 @@
31
31
  input,
32
32
  .ac-card,
33
33
  textarea {
34
- border: 1px solid $primary !important;
34
+ border: 1px solid $ac-primary !important;
35
35
  }
36
36
 
37
37
  p {
38
- color: $primary;
38
+ color: $ac-primary;
39
39
  }
40
40
  }
41
41
 
@@ -350,7 +350,7 @@
350
350
 
351
351
  &:hover {
352
352
  background-color: $primary-20;
353
- color: $primary;
353
+ color: $ac-primary;
354
354
  }
355
355
  }
356
356
  }
@@ -378,7 +378,7 @@
378
378
 
379
379
  &:focus {
380
380
  outline: none;
381
- border: 1px solid $primary;
381
+ border: 1px solid $ac-primary;
382
382
  }
383
383
  }
384
384
  }
@@ -397,7 +397,7 @@
397
397
  font-size: 13px;
398
398
 
399
399
  &:hover {
400
- border-color: $primary;
400
+ border-color: $ac-primary;
401
401
  }
402
402
 
403
403
  &.bg-white {
@@ -405,11 +405,11 @@
405
405
  }
406
406
 
407
407
  &.StripeElement--focus {
408
- border: 1px solid $primary;
408
+ border: 1px solid $ac-primary;
409
409
  }
410
410
 
411
411
  &:focus {
412
- border: 1px solid $primary;
412
+ border: 1px solid $ac-primary;
413
413
  outline: none;
414
414
  background-color: $white-100;
415
415
  }
@@ -499,14 +499,14 @@
499
499
 
500
500
  .is-checkradio[type="radio"] + label::after,
501
501
  .is-checkradio[type="radio"] + label:after {
502
- background: $primary;
502
+ background: $ac-primary;
503
503
  }
504
504
 
505
505
  .is-checkradio[type="checkbox"]:checked + label::before,
506
506
  .is-checkradio[type="checkbox"]:checked + label:before,
507
507
  .is-checkradio[type="radio"]:checked + label::before,
508
508
  .is-checkradio[type="radio"]:checked + label:before {
509
- border: 0.2rem solid $primary;
509
+ border: 0.2rem solid $ac-primary;
510
510
  }
511
511
 
512
512
  .is-checkradio[type="checkbox"]:hover:not([disabled]) + label::before,
@@ -516,10 +516,15 @@
516
516
  border-color: $primary-30 !important;
517
517
  }
518
518
 
519
+ .switch[type="checkbox"].is-primary:checked + label::before,
520
+ .switch[type="checkbox"].is-primary:checked + label:before {
521
+ background-color: $ac-primary;
522
+ }
523
+
519
524
  .is-checkradio[type="checkbox"] + label::after,
520
525
  .is-checkradio[type="checkbox"] + label:after {
521
526
  border-width: 0.2rem;
522
- border-color: $primary;
527
+ border-color: $ac-primary;
523
528
  }
524
529
 
525
530
  // file upload
@@ -1,6 +1,6 @@
1
1
  .inner-header {
2
2
  padding: 6px 20px;
3
- border-bottom: 1px solid $color-border;
3
+ border-bottom: 1px solid $color-border-light;
4
4
  position: sticky;
5
5
  background: $white-100;
6
6
  z-index: 99;
@@ -183,7 +183,7 @@
183
183
  font-size: 13px;
184
184
 
185
185
  &.is-active {
186
- background-color: $primary;
186
+ background-color: $ac-primary;
187
187
  color: $white-100;
188
188
 
189
189
  img {
@@ -192,7 +192,7 @@
192
192
  }
193
193
 
194
194
  &:hover {
195
- background-color: $primary;
195
+ background-color: $ac-primary;
196
196
  color: $white-100;
197
197
 
198
198
  img {
@@ -278,7 +278,7 @@
278
278
  background-color: $primary-95;
279
279
 
280
280
  p {
281
- color: $primary !important;
281
+ color: $ac-primary !important;
282
282
  }
283
283
  }
284
284
  }
@@ -375,7 +375,7 @@
375
375
 
376
376
  &:hover {
377
377
  background-color: $primary-97;
378
- color: $primary;
378
+ color: $ac-primary;
379
379
  }
380
380
  }
381
381
  }
@@ -1,6 +1,6 @@
1
1
  .notification-count {
2
2
  position: absolute;
3
- background-color: $primary;
3
+ background-color: $ac-primary;
4
4
  color: $white-100;
5
5
  padding: 4px;
6
6
  font-size: 11px;
@@ -55,7 +55,7 @@
55
55
  width: 36px;
56
56
  height: 36px;
57
57
  background-color: $primary-95;
58
- color: $primary;
58
+ color: $ac-primary;
59
59
  font-size: 14px;
60
60
  display: flex;
61
61
  align-items: center;
@@ -93,7 +93,7 @@
93
93
  justify-content: center;
94
94
  width: 100%;
95
95
  padding: 8px;
96
- color: $primary;
96
+ color: $ac-primary;
97
97
  cursor: pointer;
98
98
  transition: 0.3s ease-in-out;
99
99
  &:hover {
@@ -17,7 +17,7 @@
17
17
  // &:focus {
18
18
  // outline: none;
19
19
  // box-shadow: none;
20
- // border: 1px solid $primary;
20
+ // border: 1px solid $ac-primary;
21
21
  // }
22
22
  // }
23
23
 
@@ -118,12 +118,12 @@
118
118
  var(--hsl-lightness),
119
119
  0.2
120
120
  );
121
- color: $primary;
121
+ color: $ac-primary;
122
122
  }
123
123
 
124
124
  &.multiselect__option--highlight {
125
125
  background-color: $white-100;
126
- color: $primary;
126
+ color: $ac-primary;
127
127
  &:hover {
128
128
  background-color: $primary-97;
129
129
  }
@@ -135,7 +135,7 @@
135
135
  var(--hsl-lightness),
136
136
  0.2
137
137
  );
138
- color: $primary;
138
+ color: $ac-primary;
139
139
  }
140
140
  }
141
141
  }
@@ -66,7 +66,7 @@
66
66
  top: 0;
67
67
  width: calc(100% - 20px);
68
68
  height: 100%;
69
- background: $primary;
69
+ background: $ac-primary;
70
70
  border-radius: 4px;
71
71
  z-index: -1;
72
72
  transition: 0.3s ease-in-out;
@@ -109,7 +109,7 @@
109
109
  background-color: transparent;
110
110
 
111
111
  &:after {
112
- color: $primary;
112
+ color: $ac-primary;
113
113
  opacity: 0.2;
114
114
  visibility: visible;
115
115
  }
@@ -32,7 +32,7 @@
32
32
  transition: 0.3s ease-in-out;
33
33
  }
34
34
  &:hover {
35
- color: $primary;
35
+ color: $ac-primary;
36
36
 
37
37
  &:after {
38
38
  opacity: 1;
@@ -41,7 +41,7 @@
41
41
  }
42
42
  }
43
43
  &.is-active {
44
- color: $primary;
44
+ color: $ac-primary;
45
45
  &:hover {
46
46
  &::after {
47
47
  background-color: $color-border;
@@ -169,7 +169,7 @@
169
169
  width: 8px;
170
170
  height: 8px;
171
171
  border-radius: 50%;
172
- background-color: $primary;
172
+ background-color: $ac-primary;
173
173
  transition: 0.3s ease-in-out;
174
174
  opacity: 0;
175
175
  visibility: hidden;
@@ -67,18 +67,18 @@
67
67
 
68
68
  &.is-active {
69
69
  &::after {
70
- border: 1px dashed $primary;
70
+ border: 1px dashed $ac-primary;
71
71
  }
72
72
 
73
73
  &::before {
74
- background-color: $primary;
74
+ background-color: $ac-primary;
75
75
  }
76
76
 
77
77
  .nested-header {
78
78
  h6 {
79
79
  .collaps-icon {
80
- border: 1px solid $primary !important;
81
- color: $primary !important;
80
+ border: 1px solid $ac-primary !important;
81
+ color: $ac-primary !important;
82
82
  }
83
83
  }
84
84
  }
@@ -199,8 +199,8 @@
199
199
  // }
200
200
 
201
201
  // .is-selected {
202
- // border: 1px solid $primary;
203
- // border-bottom: 1px solid $primary !important;
202
+ // border: 1px solid $ac-primary;
203
+ // border-bottom: 1px solid $ac-primary !important;
204
204
  // border-radius: 4px;
205
205
  // }
206
206
  // }
@@ -223,7 +223,7 @@
223
223
  // &.is-selected {
224
224
  // background-color: $primary-97;
225
225
  // strong {
226
- // color: $primary;
226
+ // color: $ac-primary;
227
227
  // }
228
228
  // }
229
229
  // }
@@ -383,14 +383,14 @@
383
383
  height: 18px;
384
384
  cursor: pointer;
385
385
  border: none;
386
- color: $primary;
386
+ color: $ac-primary;
387
387
  background-color: $color-border;
388
388
  transition: 0.3s ease-in-out;
389
389
  &:hover {
390
390
  background-color: $primary-80;
391
391
  }
392
392
  &.is-primary {
393
- background-color: $primary;
393
+ background-color: $ac-primary;
394
394
  color: $white-100;
395
395
  &:hover {
396
396
  background-color: $primary-30;
@@ -133,11 +133,11 @@
133
133
  input,
134
134
  .ac-card,
135
135
  textarea {
136
- border: 1px solid $primary !important;
136
+ border: 1px solid $ac-primary !important;
137
137
  }
138
138
 
139
139
  p {
140
- color: $primary;
140
+ color: $ac-primary;
141
141
  }
142
142
  }
143
143
 
@@ -485,7 +485,7 @@
485
485
  var(--hsl-lightness),
486
486
  0.2
487
487
  );
488
- color: $primary;
488
+ color: $ac-primary;
489
489
  }
490
490
  }
491
491
  }
@@ -513,7 +513,7 @@
513
513
 
514
514
  &:focus {
515
515
  outline: none;
516
- border: 1px solid $primary;
516
+ border: 1px solid $ac-primary;
517
517
  }
518
518
  }
519
519
  }
@@ -1,28 +1,13 @@
1
- $primary-hue: 149;
2
- $primary-saturation: 100%;
3
- $primary-5: hsl($primary-hue, $primary-saturation, 5%);
4
- $primary-10: hsl($primary-hue, $primary-saturation, 10%);
5
- $primary-20: hsl($primary-hue, $primary-saturation, 20%);
6
- $primary: hsl($primary-hue, $primary-saturation, 30%);
7
- $primary-30: hsl($primary-hue, $primary-saturation, 30%);
8
- $primary-40: hsl($primary-hue, $primary-saturation, 40%);
9
- $primary-50: hsl($primary-hue, $primary-saturation, 50%);
10
- $primary-60: hsl($primary-hue, $primary-saturation, 60%);
11
- $primary-70: hsl($primary-hue, $primary-saturation, 70%);
12
- $primary-80: hsl($primary-hue, $primary-saturation, 80%);
13
- $primary-90: hsl($primary-hue, $primary-saturation, 90%);
14
- $primary-93: hsl($primary-hue, $primary-saturation, 93%);
15
- $primary-95: hsl($primary-hue, $primary-saturation, 95%);
16
- $primary-97: hsl($primary-hue, $primary-saturation, 97%);
1
+ :root {
2
+ --primary-hue: 149;
3
+ --primary-saturation: 100%;
4
+ --primary-light: 30%;
5
+ }
6
+ $primary-hue: var(--primary-hue);
7
+ $primary-saturation: var(--primary-saturation);
8
+ $primary-light: var(--primary-light);
17
9
 
18
- $primary-light-grey: hsl($primary-hue, 30%, 96%);
19
- $primary-dark-grey: hsl($primary-hue, 30%, 10%);
10
+ $ac-primary: hsl($primary-hue, $primary-saturation, $primary-light);
20
11
 
21
- $color-text: hsl($primary-hue, 10%, 35%);
22
- $color-heading: hsl($primary-hue, 10%, 10%);
23
- $color-label: hsl($primary-hue, 20%, 50%);
24
- $color-link: hsl($primary-hue, 40%, 20%);
25
- $color-border-light: hsl($primary-hue, 30%, 95%);
26
12
  $color-border: hsl($primary-hue, 30%, 90%);
27
- $color-border-dark: hsl($primary-hue, 10%, 80%);
28
13
  $color-sidebar: hsl($primary-hue, $primary-saturation, 5%);
@@ -0,0 +1,48 @@
1
+ // :root {
2
+ // --primary-hue: 208;
3
+ // --primary-saturation: 77%;
4
+ // --primary-light: 40%;
5
+ // }
6
+ // :root {
7
+ // --theme-mode: dark;
8
+ // }
9
+ // // primary color guides
10
+ // $primary-hue: var(--primary-hue);
11
+ // $primary-saturation: var(--primary-saturation);
12
+ // $primary-light: var(--primary-light);
13
+ // $theme-mode: var(--theme-mode);
14
+
15
+ // $primary-5: hsl($primary-hue, $primary-saturation, 95%);
16
+ // $primary-10: hsl($primary-hue, $primary-saturation, 90%);
17
+ // $primary-20: hsl($primary-hue, $primary-saturation, 80%);
18
+ // $primary-30: hsl($primary-hue, $primary-saturation, 70%);
19
+ // $primary-40: hsl($primary-hue, $primary-saturation, 60%);
20
+ // $ac-primary: hsl($primary-hue, $primary-saturation, $primary-light);
21
+ // $primary-50: hsl($primary-hue, $primary-saturation, 50%);
22
+ // $primary-60: hsl($primary-hue, $primary-saturation, 40%);
23
+ // $primary-70: hsl($primary-hue, $primary-saturation, 30%);
24
+ // $primary-80: hsl($primary-hue, $primary-saturation, 20%);
25
+ // $primary-90: hsl($primary-hue, $primary-saturation, 10%);
26
+ // $primary-93: hsl($primary-hue, $primary-saturation, 7%);
27
+ // $primary-95: hsl($primary-hue, $primary-saturation, 5%);
28
+ // $primary-97: hsl($primary-hue, $primary-saturation, 3%);
29
+
30
+ // $primary-light-grey: hsl($primary-hue, 30%, 20%);
31
+ // $primary-dark-grey: hsl($primary-hue, 30%, 90%);
32
+
33
+ // // white and black
34
+ // $white-100: hsl($primary-hue, 50%, 5%);
35
+ // $black-100: hsl(0, 0%, 90%);
36
+
37
+ // $color-text: hsl($primary-hue, 10%, 80%);
38
+ // $color-heading: hsl($primary-hue, 10%, 90%);
39
+ // $color-label: hsl($primary-hue, 20%, 50%);
40
+ // $color-link: hsl($primary-hue, 40%, 80%);
41
+ // $color-border-light: hsl($primary-hue, 30%, 20%);
42
+ // $color-border: hsl($primary-hue, 30%, 20%);
43
+ // $color-border-dark: hsl($primary-hue, 10%, 30%);
44
+ // $color-sidebar: hsl($primary-hue, $primary-saturation, 10%);
45
+
46
+ // .ac-left-sidebar .menu-list.ac-menu-list li a {
47
+ // color: $color-text;
48
+ // }
@@ -184,11 +184,11 @@ export default {
184
184
  font-weight: 500;
185
185
  border-radius: 4px;
186
186
  border: 1px solid $color-border;
187
- color: $primary;
187
+ color: $ac-primary;
188
188
  margin-left: 4px;
189
189
 
190
190
  &:hover {
191
- background-color: $primary !important;
191
+ background-color: $ac-primary !important;
192
192
  color: $white-100;
193
193
  border: 1px solid $color-border;
194
194
  }
@@ -199,7 +199,7 @@ export default {
199
199
  background-color: $primary-97;
200
200
  }
201
201
  &.is-current {
202
- background-color: $primary;
202
+ background-color: $ac-primary;
203
203
  color: $white-100;
204
204
  }
205
205
  }
@@ -227,7 +227,7 @@ export default {
227
227
  &:focus,
228
228
  &:active,
229
229
  &:focus-visible {
230
- border: 1px solid $primary;
230
+ border: 1px solid $ac-primary;
231
231
  outline: none;
232
232
  }
233
233
  }