@appscode/design-system 1.0.3-alpha.9 → 1.0.43-alpha.102

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 (115) hide show
  1. package/base/utilities/_default.scss +285 -23
  2. package/base/utilities/_derived-variables.scss +2 -15
  3. package/base/utilities/_initial-variables.scss +99 -64
  4. package/base/utilities/_mixin.scss +90 -10
  5. package/base/utilities/_typography.scss +23 -7
  6. package/base/utilities/dark-theme.scss +25 -0
  7. package/components/_ac-accordion.scss +1 -0
  8. package/components/_ac-alert-box.scss +47 -11
  9. package/components/_ac-card.scss +55 -20
  10. package/components/_ac-code-highlight.scss +7 -1
  11. package/components/_ac-content-layout.scss +4 -4
  12. package/components/_ac-drag.scss +6 -6
  13. package/components/_ac-input.scss +140 -38
  14. package/components/_ac-modal.scss +5 -4
  15. package/components/_ac-multi-select.scss +220 -18
  16. package/components/_ac-options.scss +31 -16
  17. package/components/_ac-select-box.scss +15 -5
  18. package/components/_ac-table.scss +88 -47
  19. package/components/_ac-tabs.scss +72 -23
  20. package/components/_ac-tags.scss +2 -2
  21. package/components/_ac-terminal.scss +272 -0
  22. package/components/_app-drawer.scss +6 -6
  23. package/components/_breadcumb.scss +8 -3
  24. package/components/_buttons.scss +86 -33
  25. package/components/_card-body-wrapper.scss +3 -3
  26. package/components/_dashboard-header.scss +1 -1
  27. package/components/_direct-deploy.scss +69 -0
  28. package/components/_go-to-top.scss +1 -1
  29. package/components/_graph.scss +45 -0
  30. package/components/_image-upload.scss +6 -4
  31. package/components/_left-sidebar-menu.scss +206 -46
  32. package/components/_monaco-editor.scss +1 -1
  33. package/components/_navbar.scss +104 -27
  34. package/components/_overview-info.scss +4 -4
  35. package/components/_overview-page.scss +1 -2
  36. package/components/_pagination.scss +45 -7
  37. package/components/_payment-card.scss +28 -12
  38. package/components/_preloader.scss +1 -1
  39. package/components/_preview-modal.scss +8 -8
  40. package/components/_pricing-table.scss +1 -1
  41. package/components/_progress-bar.scss +5 -5
  42. package/components/_subscription-card.scss +15 -8
  43. package/components/_table-of-content.scss +1 -1
  44. package/components/_tfa.scss +69 -0
  45. package/components/_widget-menu.scss +9 -9
  46. package/components/_wizard.scss +32 -20
  47. package/components/ac-toaster/_ac-toasted.scss +40 -8
  48. package/components/bbum/_card-team.scss +18 -10
  49. package/components/bbum/_information-center.scss +19 -5
  50. package/components/bbum/_mobile-desktop.scss +6 -6
  51. package/components/bbum/_post.scss +5 -4
  52. package/components/bbum/_sign-up-notification.scss +6 -6
  53. package/components/bbum/_single-post-preview.scss +9 -9
  54. package/components/bbum/_user-profile.scss +97 -90
  55. package/components/ui-builder/_ui-builder.scss +31 -12
  56. package/components/ui-builder/_vue-open-api.scss +98 -0
  57. package/layouts/_404.scss +2 -1
  58. package/layouts/_code-preview.scss +14 -6
  59. package/main.scss +4 -0
  60. package/package.json +2 -7
  61. package/plugins/theme.js +142 -0
  62. package/plugins/vue-toaster.js +7 -6
  63. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +95 -0
  64. package/vue-components/v2/card/CardContent.vue +5 -0
  65. package/vue-components/v2/card/CardHeader.vue +12 -0
  66. package/vue-components/v2/card/OverviewCard.vue +10 -0
  67. package/vue-components/v2/card/OverviewCards.vue +5 -0
  68. package/vue-components/v2/card/PaymentCards.vue +16 -10
  69. package/vue-components/v2/content/ContentHeader.vue +1 -1
  70. package/vue-components/v2/editor/Editor.vue +37 -17
  71. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +232 -0
  72. package/vue-components/v2/header/Header.vue +0 -1
  73. package/vue-components/v2/modal/Modal.vue +32 -14
  74. package/vue-components/v2/modals/JsonShowModal.vue +0 -1
  75. package/vue-components/v2/navbar/Appdrawer.vue +9 -6
  76. package/vue-components/v2/navbar/ThemeMode.vue +120 -0
  77. package/vue-components/v2/pagination/Pagination.vue +8 -1
  78. package/vue-components/v2/preloader/Preloader.vue +5 -5
  79. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  80. package/vue-components/v2/sidebar/SidebarItem.vue +24 -2
  81. package/vue-components/v2/table/InfoTable.vue +13 -3
  82. package/vue-components/v2/table/Table.vue +75 -5
  83. package/vue-components/v2/table/TableRow.vue +17 -8
  84. package/vue-components/v2/table/table-cell/CellValue.vue +10 -1
  85. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  86. package/vue-components/v3/button/Button.vue +73 -0
  87. package/vue-components/v3/content/ContentHeader.vue +54 -0
  88. package/vue-components/v3/content/ContentTable.vue +65 -0
  89. package/vue-components/v3/dropdown/DropdownDivider.vue +3 -0
  90. package/vue-components/v3/dropdown/DropdownItem.vue +5 -0
  91. package/vue-components/v3/dropdown/DropdownMenu.vue +111 -0
  92. package/vue-components/v3/editor/Editor.vue +157 -0
  93. package/vue-components/v3/form-fields/Input.vue +21 -0
  94. package/vue-components/v3/header/Header.vue +45 -0
  95. package/vue-components/v3/modal/Modal.vue +135 -0
  96. package/vue-components/v3/modals/JsonShowModal.vue +87 -0
  97. package/vue-components/v3/navbar/Appdrawer.vue +63 -0
  98. package/vue-components/v3/navbar/ThemeMode.vue +128 -0
  99. package/vue-components/v3/navbar/User.vue +64 -0
  100. package/vue-components/v3/pagination/Pagination.vue +159 -0
  101. package/vue-components/v3/searchbars/SearchBar.vue +47 -0
  102. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  103. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  104. package/vue-components/v3/tab/TabItem.vue +17 -0
  105. package/vue-components/v3/table/FakeTableCell.vue +39 -0
  106. package/vue-components/v3/table/InfoTable.vue +105 -0
  107. package/vue-components/v3/table/Table.vue +238 -0
  108. package/vue-components/v3/table/TableCell.vue +28 -0
  109. package/vue-components/v3/table/TableRow.vue +60 -0
  110. package/vue-components/v3/table/table-cell/ArrayCell.vue +111 -0
  111. package/vue-components/v3/table/table-cell/CellValue.vue +117 -0
  112. package/vue-components/v3/table/table-cell/ObjectCell.vue +105 -0
  113. package/vue-components/v3/table/table-cell/ValueWithModal.vue +43 -0
  114. package/vue-components/v3/tabs/EditorTabs.vue +36 -0
  115. package/vue-components/v3/tag/Tag.vue +17 -0
@@ -4,6 +4,7 @@
4
4
  grid-gap: 0px;
5
5
  grid-template-columns: 270px calc(100% - 270px);
6
6
  padding-top: 50px;
7
+
7
8
  &.is-fullwidth {
8
9
  grid-template-columns: auto !important;
9
10
 
@@ -22,27 +23,36 @@
22
23
  }
23
24
  }
24
25
 
26
+ &.in-ui-builder {
27
+ grid-template-columns: calc(100% - 270px) 270px !important;
28
+ }
29
+
25
30
  &.has-ui-builder {
26
31
  grid-template-columns: 70px calc(100% - 70px);
27
32
  grid-gap: 0;
33
+
28
34
  .inner-header {
29
35
  position: sticky;
30
36
  top: 100px;
31
- background-color: #fff;
32
- z-index: 9;
37
+ background-color: $ac-white;
38
+ z-index: 997;
33
39
  }
40
+
34
41
  .ac-system-content {
35
42
  &.pr-15 {
36
43
  padding-right: 0 !important;
37
44
  }
45
+
38
46
  .ac-terminal {
39
47
  width: calc(100% - 290px);
40
48
  left: 289px;
41
49
  }
42
50
  }
51
+
43
52
  .ac-system-left-sidebar.is-expanded {
44
- z-index: 99;
53
+ z-index: 998;
45
54
  }
55
+
46
56
  &.expanded-sidebar {
47
57
  grid-gap: 0px;
48
58
  z-index: 9;
@@ -70,15 +80,18 @@
70
80
  .ac-system-body {
71
81
  padding-top: 0;
72
82
  grid-template-columns: 220px calc(100% - 440px) 220px;
83
+
73
84
  .ac-system-left-sidebar {
74
85
  border-right: none !important;
75
86
  height: calc(100vh - 60px);
87
+
76
88
  .ac-left-sidebar-wrapper {
77
89
  position: fixed;
78
90
  top: 140px;
79
91
  width: 219px;
80
- border-right: 1px solid #e7e7e7;
92
+ border-right: 1px solid $ac-white-light;
81
93
  height: 100%;
94
+
82
95
  ul.menu-list-wrapper {
83
96
  padding-top: 10px;
84
97
  }
@@ -92,11 +105,11 @@
92
105
  }
93
106
 
94
107
  .ac-system-left-sidebar {
95
- background-color: $ac-white;
96
108
  border-right: 1px solid $ac-white-light;
97
109
  box-shadow: none;
110
+
98
111
  &.is-expanded {
99
- z-index: 9;
112
+ z-index: 998;
100
113
 
101
114
  .ac-product-logo {
102
115
  width: 270px !important;
@@ -130,10 +143,51 @@
130
143
  }
131
144
  }
132
145
  }
146
+
133
147
  .form-content {
134
148
  width: 720px;
135
149
  }
136
150
 
151
+ .dropdown-content {
152
+ background-color: $ac-white;
153
+ }
154
+
155
+ // color swatch start
156
+ input[type="color"] {
157
+ -webkit-appearance: none;
158
+ border: none;
159
+ width: 20px;
160
+ height: 20px;
161
+ border-radius: 50%;
162
+ border: 1px solid #777;
163
+ margin-left: 3px;
164
+ padding: 2px;
165
+ cursor: pointer;
166
+ }
167
+ input[type="color"]::-webkit-color-swatch-wrapper {
168
+ padding: 0;
169
+ }
170
+ // input[type="color"]::-moz-color-swatch,
171
+ input[type="color"]::-webkit-color-swatch {
172
+ border: none;
173
+ border-radius: 50%;
174
+ }
175
+ input[type="color"]::-moz-color-swatch {
176
+ border: none;
177
+ border-radius: 50%;
178
+ }
179
+ // color swatch end
180
+
181
+ .is-dark-theme {
182
+ .dropdown-content {
183
+ background-color: $dark-bg-light;
184
+ }
185
+ }
186
+
187
+ .ac-preloader {
188
+ color: $ac-color-text;
189
+ }
190
+
137
191
  .section-padding {
138
192
  padding: 100px 0;
139
193
  }
@@ -167,21 +221,27 @@
167
221
  .is-not-fixed {
168
222
  position: inherit !important;
169
223
  }
224
+
170
225
  .b-1 {
171
226
  border: 1px solid $ac-white-light;
172
227
  }
228
+
173
229
  .b-t-1 {
174
230
  border-top: 1px solid $ac-white-light;
175
231
  }
232
+
176
233
  .b-b-1 {
177
234
  border-bottom: 1px solid $ac-white-light;
178
235
  }
236
+
179
237
  .b-l-1 {
180
238
  border-left: 1px solid $ac-white-light;
181
239
  }
240
+
182
241
  .b-r-1 {
183
242
  border-right: 1px solid $ac-white-light;
184
243
  }
244
+
185
245
  // border none
186
246
  .is-border-none {
187
247
  border: none !important;
@@ -208,6 +268,14 @@
208
268
  cursor: not-allowed;
209
269
  }
210
270
 
271
+ .no-data-image {
272
+ img {
273
+ width: 250px;
274
+ height: auto;
275
+ padding: 20px;
276
+ }
277
+ }
278
+
211
279
  // for ellipsis
212
280
  @for $i from 0 through 10 {
213
281
  .is-ellipsis-#{$i} {
@@ -220,6 +288,23 @@
220
288
  -webkit-box-orient: vertical;
221
289
  }
222
290
  }
291
+ // toast css third-party
292
+
293
+ .toasted-container {
294
+ .ac-toast-action.mr-10 {
295
+ text-decoration: underline !important;
296
+ }
297
+ .has-report-issue {
298
+ padding-right: 140px !important;
299
+ }
300
+ }
301
+ .is-dark-theme {
302
+ .toasted-container {
303
+ i.fa {
304
+ color: #ffffff !important;
305
+ }
306
+ }
307
+ }
223
308
 
224
309
  // flex start
225
310
  .is-middle-alignment {
@@ -261,13 +346,13 @@
261
346
  }
262
347
 
263
348
  &::-webkit-scrollbar-thumb {
264
- background-color: #929292;
349
+ background-color: $ac-gray-light;
265
350
  border-radius: 50px;
266
351
  height: 2px !important;
267
352
  }
268
353
 
269
354
  &::-webkit-scrollbar-thumb:hover {
270
- background-color: #929292;
355
+ background-color: $ac-gray-light;
271
356
  }
272
357
 
273
358
  &:hover::-webkit-scrollbar-corner {
@@ -308,33 +393,33 @@
308
393
  }
309
394
 
310
395
  &::-webkit-scrollbar-thumb {
311
- background-color: #929292;
396
+ background-color: $ac-gray-light;
312
397
  border-radius: 50px;
313
398
  height: 2px !important;
314
399
  }
315
400
 
316
401
  &::-moz-scrollbar-thumb {
317
- background-color: #929292;
402
+ background-color: $ac-gray-light;
318
403
  border-radius: 50px;
319
404
  height: 2px !important;
320
405
  }
321
406
 
322
407
  &::-ms-scrollbar-thumb {
323
- background-color: #929292;
408
+ background-color: $ac-gray-light;
324
409
  border-radius: 50px;
325
410
  height: 2px !important;
326
411
  }
327
412
 
328
413
  &::-webkit-scrollbar-thumb:hover {
329
- background-color: #929292;
414
+ background-color: $ac-gray-light;
330
415
  }
331
416
 
332
417
  &::-moz-scrollbar-thumb:hover {
333
- background-color: #929292;
418
+ background-color: $ac-gray-light;
334
419
  }
335
420
 
336
421
  &::-ms-scrollbar-thumb:hover {
337
- background-color: #929292;
422
+ background-color: $ac-gray-light;
338
423
  }
339
424
 
340
425
  &:hover::-webkit-scrollbar-corner {
@@ -365,13 +450,13 @@
365
450
  }
366
451
 
367
452
  &::-webkit-scrollbar-thumb {
368
- background-color: #929292;
453
+ background-color: $ac-gray-light;
369
454
  border-radius: 50px;
370
455
  width: 2px !important;
371
456
  }
372
457
 
373
458
  &::-webkit-scrollbar-thumb:hover {
374
- background-color: #929292;
459
+ background-color: $ac-gray-light;
375
460
  }
376
461
 
377
462
  &:hover::-webkit-scrollbar-corner {
@@ -394,7 +479,7 @@
394
479
 
395
480
  .is-transparent {
396
481
  border: none;
397
- background: transparent;
482
+ background-color: transparent;
398
483
  }
399
484
 
400
485
  .is-error {
@@ -403,9 +488,18 @@
403
488
  color: $ac-red;
404
489
  text-align: left;
405
490
  }
491
+
406
492
  code {
407
493
  color: $ac-color-heading;
408
494
  }
495
+
496
+ .is-dark-theme {
497
+ code {
498
+ background-color: $dark-bg-light;
499
+ color: $ac-full-white;
500
+ }
501
+ }
502
+
409
503
  .is-danger:not(.ac-button) {
410
504
  color: $ac-danger !important;
411
505
  }
@@ -422,42 +516,57 @@ button {
422
516
  }
423
517
 
424
518
  .tag:not(body) {
425
- background-color: #e5e9f2;
519
+ background-color: $ac-white-light;
426
520
  font-size: 11px;
427
521
  height: 18px;
428
522
  letter-spacing: 0.1px;
429
523
  color: $ac-color-heading;
524
+
525
+ a {
526
+ &:hover {
527
+ color: $ac-color-text;
528
+ }
529
+ }
530
+
430
531
  &.is-available {
431
532
  background-color: #27b064;
432
533
  color: $ac-white;
433
534
  }
535
+
434
536
  &.is-success {
435
537
  background-color: $ac-green;
436
538
  color: $ac-white;
539
+
437
540
  &.is-light {
438
541
  background-color: rgba(39, 176, 100, 0.2);
439
542
  color: $ac-green;
440
543
  }
441
544
  }
545
+
442
546
  &.is-primary {
443
547
  background-color: $ac-primary;
444
548
  color: $ac-white;
549
+
445
550
  &.is-light {
446
551
  background-color: rgba(25, 113, 189, 0.2);
447
552
  color: $ac-primary;
448
553
  }
449
554
  }
555
+
450
556
  &.is-gray {
451
557
  background-color: #e5e9f2;
452
- color: #666;
558
+ color: $ac-gray-darker;
453
559
  }
560
+
454
561
  &.is-warning {
455
562
  background-color: $ac-warning;
456
563
  color: $ac-white !important;
457
564
  }
565
+
458
566
  &.is-danger {
459
567
  background-color: $ac-red;
460
568
  color: $ac-white !important;
569
+
461
570
  &.is-light {
462
571
  background-color: rgba(234, 61, 47, 0.2);
463
572
  color: $ac-red !important;
@@ -469,6 +578,7 @@ button {
469
578
  .icon {
470
579
  margin-bottom: 0.5rem;
471
580
  }
581
+
472
582
  .tag {
473
583
  a {
474
584
  font-weight: 500;
@@ -489,12 +599,12 @@ button {
489
599
  top: 12px;
490
600
  width: 100%;
491
601
  height: 1px;
492
- background: $ac-white-light;
602
+ background-color: $ac-white-light;
493
603
  }
494
604
 
495
605
  h5 {
496
606
  color: $ac-color-text;
497
- background: $ac-white;
607
+ background-color: $ac-white;
498
608
  z-index: 2;
499
609
  display: inline-block;
500
610
  position: relative;
@@ -646,6 +756,147 @@ $border_color_4: transparent transparent #585d6e transparent;
646
756
  }
647
757
  }
648
758
  }
759
+ // tooltip in vue-open-api
760
+ .tooltip {
761
+ display: block !important;
762
+ z-index: 10000;
763
+
764
+ &.is-button-info {
765
+ .tooltip-inner {
766
+ background: $ac-white;
767
+ color: $ac-primary;
768
+ border-radius: 4px;
769
+ padding: 5px 20px 4px;
770
+ box-shadow: $ac-shadow-1;
771
+ font-weight: 500;
772
+ font-size: 13px;
773
+ }
774
+
775
+ .tooltip-arrow {
776
+ width: 0;
777
+ height: 0;
778
+ border-style: solid;
779
+ position: absolute;
780
+ margin: 5px;
781
+ border-color: $ac-white;
782
+ }
783
+ }
784
+
785
+ &.is-errors-tooltip {
786
+ .tooltip-inner {
787
+ background: $ac-white;
788
+ color: $ac-danger;
789
+ border-radius: 4px;
790
+ padding: 5px 20px 4px;
791
+ box-shadow: $ac-shadow-1;
792
+ font-weight: 500;
793
+ font-size: 13px;
794
+
795
+ .errors-wrapper {
796
+ .error-element {
797
+ padding: 5px 0;
798
+ }
799
+ }
800
+ }
801
+
802
+ .tooltip-arrow {
803
+ width: 0;
804
+ height: 0;
805
+ border-style: solid;
806
+ position: absolute;
807
+ margin: 5px;
808
+ border-color: $ac-white;
809
+ }
810
+ }
811
+
812
+ &[x-placement^="top"] {
813
+ margin-bottom: 5px;
814
+
815
+ .tooltip-arrow {
816
+ border-width: 5px 5px 0 5px;
817
+ border-left-color: transparent !important;
818
+ border-right-color: transparent !important;
819
+ border-bottom-color: transparent !important;
820
+ bottom: -5px;
821
+ left: calc(50% - 5px);
822
+ margin-top: 0;
823
+ margin-bottom: 0;
824
+ }
825
+ }
826
+
827
+ &[x-placement^="bottom"] {
828
+ margin-top: 5px;
829
+
830
+ .tooltip-arrow {
831
+ border-width: 0 5px 5px 5px;
832
+ border-left-color: transparent !important;
833
+ border-right-color: transparent !important;
834
+ border-top-color: transparent !important;
835
+ top: -5px;
836
+ left: calc(50% - 5px);
837
+ margin-top: 0;
838
+ margin-bottom: 0;
839
+ }
840
+ }
841
+
842
+ &[x-placement^="right"] {
843
+ margin-left: 5px;
844
+
845
+ .tooltip-arrow {
846
+ border-width: 5px 5px 5px 0;
847
+ border-left-color: transparent !important;
848
+ border-top-color: transparent !important;
849
+ border-bottom-color: transparent !important;
850
+ left: -5px;
851
+ top: calc(50% - 5px);
852
+ margin-left: 0;
853
+ margin-right: 0;
854
+ }
855
+ }
856
+
857
+ &[x-placement^="left"] {
858
+ margin-right: 5px;
859
+
860
+ .tooltip-arrow {
861
+ border-width: 5px 0 5px 5px;
862
+ border-top-color: transparent !important;
863
+ border-right-color: transparent !important;
864
+ border-bottom-color: transparent !important;
865
+ right: -5px;
866
+ top: calc(50% - 5px);
867
+ margin-left: 0;
868
+ margin-right: 0;
869
+ }
870
+ }
871
+
872
+ &.popover {
873
+ $color: #f9f9f9;
874
+
875
+ .popover-inner {
876
+ background: $color;
877
+ color: black;
878
+ padding: 24px;
879
+ border-radius: 4px;
880
+ box-shadow: $ac-shadow-1;
881
+ }
882
+
883
+ .popover-arrow {
884
+ border-color: $color;
885
+ }
886
+ }
887
+
888
+ &[aria-hidden="true"] {
889
+ visibility: hidden;
890
+ opacity: 0;
891
+ transition: opacity 0.15s, visibility 0.15s;
892
+ }
893
+
894
+ &[aria-hidden="false"] {
895
+ visibility: visible;
896
+ opacity: 1;
897
+ transition: opacity 0.15s;
898
+ }
899
+ }
649
900
 
650
901
  // Customize tooltip end
651
902
 
@@ -653,7 +904,7 @@ $border_color_4: transparent transparent #585d6e transparent;
653
904
  .ac-footer-action {
654
905
  margin-top: 10px;
655
906
  padding-top: 10px;
656
- background: $ac-white;
907
+ background-color: $ac-white;
657
908
  padding: 10px 20px;
658
909
  margin-left: 0;
659
910
  margin-right: 0;
@@ -679,7 +930,7 @@ $border_color_4: transparent transparent #585d6e transparent;
679
930
  height: 10px;
680
931
  width: 10px;
681
932
  border-radius: 50%;
682
- background: $ac-grey-lightest;
933
+ background-color: $ac-gray-lightest;
683
934
  border: 2px solid $ac-white;
684
935
  display: inline-flex;
685
936
 
@@ -695,6 +946,17 @@ $border_color_4: transparent transparent #585d6e transparent;
695
946
  // Status css
696
947
  // ac-footer sticky end
697
948
 
949
+
950
+
951
+ // terminal scss end
952
+ .is-dark-theme {
953
+ a {
954
+ &:hover {
955
+ color: #485fc7;
956
+ }
957
+ }
958
+ }
959
+
698
960
  /****************************************
699
961
  Responsive Classes
700
962
  *****************************************/
@@ -1,28 +1,15 @@
1
- // Typography
2
- $ac-size-small: $ac-size-7;
3
- $ac-size-normal: $ac-size-6;
4
- $ac-size-medium: $ac-size-5;
5
- $ac-size-large: $ac-size-4;
6
-
7
1
  // color
8
2
  $ac-info: $ac-blue;
9
3
  $ac-success: $ac-primary;
10
4
  $ac-warning: $ac-yellow;
11
5
  $ac-danger: $ac-red;
12
6
 
13
- // bg-color
14
- $ac-bg-dark: #2c2e42;
15
- $ac-modal-header-bg: #e8e8e8;
16
- $ac-input-bg-color: #eceff4;
17
- $ac-bg-light-gray: #f4f6f9;
18
- $table-header: #e4e8ef;
19
7
  // Text colors
20
- $ac-color-text: #393e46;
21
- $ac-color-heading: #1c1c1c;
8
+ $ac-color-text: var(--ac-text);
9
+ $ac-color-heading: var(--ac-text-heading);
22
10
 
23
11
  // Link colors
24
12
  $ac-link: $ac-blue;
25
- $ac-link-black: #32325d;
26
13
  $ac-link-visited: $ac-purple;
27
14
 
28
15
  // Box Shadow