@appscode/design-system 1.0.43-alpha.6 → 1.0.43-alpha.63

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 (70) hide show
  1. package/base/utilities/_default.scss +136 -20
  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 +20 -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 +45 -10
  9. package/components/_ac-card.scss +54 -19
  10. package/components/_ac-code-highlight.scss +6 -0
  11. package/components/_ac-content-layout.scss +4 -4
  12. package/components/_ac-drag.scss +6 -6
  13. package/components/_ac-input.scss +72 -38
  14. package/components/_ac-modal.scss +5 -4
  15. package/components/_ac-multi-select.scss +220 -18
  16. package/components/_ac-options.scss +18 -8
  17. package/components/_ac-select-box.scss +5 -5
  18. package/components/_ac-table.scss +40 -33
  19. package/components/_ac-tabs.scss +64 -23
  20. package/components/_ac-tags.scss +2 -2
  21. package/components/_ac-terminal.scss +248 -0
  22. package/components/_app-drawer.scss +6 -6
  23. package/components/_breadcumb.scss +7 -2
  24. package/components/_buttons.scss +78 -32
  25. package/components/_card-body-wrapper.scss +3 -3
  26. package/components/_dashboard-header.scss +3 -3
  27. package/components/_direct-deploy.scss +69 -0
  28. package/components/_go-to-top.scss +1 -1
  29. package/components/_image-upload.scss +6 -4
  30. package/components/_left-sidebar-menu.scss +196 -46
  31. package/components/_monaco-editor.scss +1 -1
  32. package/components/_navbar.scss +103 -26
  33. package/components/_overview-info.scss +4 -4
  34. package/components/_overview-page.scss +1 -2
  35. package/components/_pagination.scss +45 -7
  36. package/components/_payment-card.scss +28 -12
  37. package/components/_preview-modal.scss +8 -8
  38. package/components/_pricing-table.scss +1 -1
  39. package/components/_progress-bar.scss +5 -5
  40. package/components/_subscription-card.scss +15 -8
  41. package/components/_table-of-content.scss +1 -1
  42. package/components/_tfa.scss +69 -0
  43. package/components/_widget-menu.scss +9 -9
  44. package/components/_wizard.scss +32 -20
  45. package/components/ac-toaster/_ac-toasted.scss +40 -8
  46. package/components/bbum/_card-team.scss +17 -9
  47. package/components/bbum/_information-center.scss +19 -5
  48. package/components/bbum/_mobile-desktop.scss +6 -6
  49. package/components/bbum/_post.scss +5 -4
  50. package/components/bbum/_sign-up-notification.scss +6 -6
  51. package/components/bbum/_single-post-preview.scss +9 -9
  52. package/components/bbum/_user-profile.scss +98 -90
  53. package/components/ui-builder/_ui-builder.scss +19 -8
  54. package/layouts/_404.scss +2 -1
  55. package/layouts/_code-preview.scss +14 -7
  56. package/main.scss +2 -0
  57. package/package.json +1 -1
  58. package/plugins/theme.js +142 -0
  59. package/plugins/vue-toaster.js +6 -6
  60. package/vue-components/v2/card/PaymentCards.vue +11 -2
  61. package/vue-components/v2/editor/Editor.vue +31 -17
  62. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  63. package/vue-components/v2/navbar/ThemeMode.vue +124 -0
  64. package/vue-components/v2/preloader/Preloader.vue +5 -5
  65. package/vue-components/v2/table/table-cell/CellValue.vue +10 -1
  66. package/vue-components/v3/dropdown/DropdownMenu.vue +1 -1
  67. package/vue-components/v3/editor/Editor.vue +33 -19
  68. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  69. package/vue-components/v3/navbar/ThemeMode.vue +118 -0
  70. package/vue-components/v3/table/table-cell/CellValue.vue +9 -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
 
@@ -25,24 +26,29 @@
25
26
  &.has-ui-builder {
26
27
  grid-template-columns: 70px calc(100% - 70px);
27
28
  grid-gap: 0;
29
+
28
30
  .inner-header {
29
31
  position: sticky;
30
32
  top: 100px;
31
- background-color: #fff;
33
+ background-color: $ac-white;
32
34
  z-index: 997;
33
35
  }
36
+
34
37
  .ac-system-content {
35
38
  &.pr-15 {
36
39
  padding-right: 0 !important;
37
40
  }
41
+
38
42
  .ac-terminal {
39
43
  width: calc(100% - 290px);
40
44
  left: 289px;
41
45
  }
42
46
  }
47
+
43
48
  .ac-system-left-sidebar.is-expanded {
44
49
  z-index: 998;
45
50
  }
51
+
46
52
  &.expanded-sidebar {
47
53
  grid-gap: 0px;
48
54
  z-index: 9;
@@ -70,15 +76,18 @@
70
76
  .ac-system-body {
71
77
  padding-top: 0;
72
78
  grid-template-columns: 220px calc(100% - 440px) 220px;
79
+
73
80
  .ac-system-left-sidebar {
74
81
  border-right: none !important;
75
82
  height: calc(100vh - 60px);
83
+
76
84
  .ac-left-sidebar-wrapper {
77
85
  position: fixed;
78
86
  top: 140px;
79
87
  width: 219px;
80
- border-right: 1px solid #e7e7e7;
88
+ border-right: 1px solid $ac-white-light;
81
89
  height: 100%;
90
+
82
91
  ul.menu-list-wrapper {
83
92
  padding-top: 10px;
84
93
  }
@@ -92,9 +101,9 @@
92
101
  }
93
102
 
94
103
  .ac-system-left-sidebar {
95
- background-color: $ac-white;
96
104
  border-right: 1px solid $ac-white-light;
97
105
  box-shadow: none;
106
+
98
107
  &.is-expanded {
99
108
  z-index: 998;
100
109
 
@@ -130,10 +139,51 @@
130
139
  }
131
140
  }
132
141
  }
142
+
133
143
  .form-content {
134
144
  width: 720px;
135
145
  }
136
146
 
147
+ .dropdown-content {
148
+ background-color: $ac-white;
149
+ }
150
+
151
+ // color swatch start
152
+ input[type="color"] {
153
+ -webkit-appearance: none;
154
+ border: none;
155
+ width: 20px;
156
+ height: 20px;
157
+ border-radius: 50%;
158
+ border: 1px solid #777;
159
+ margin-left: 3px;
160
+ padding: 2px;
161
+ cursor: pointer;
162
+ }
163
+ input[type="color"]::-webkit-color-swatch-wrapper {
164
+ padding: 0;
165
+ }
166
+ // input[type="color"]::-moz-color-swatch,
167
+ input[type="color"]::-webkit-color-swatch {
168
+ border: none;
169
+ border-radius: 50%;
170
+ }
171
+ input[type="color"]::-moz-color-swatch {
172
+ border: none;
173
+ border-radius: 50%;
174
+ }
175
+ // color swatch end
176
+
177
+ .is-dark-theme {
178
+ .dropdown-content {
179
+ background-color: $dark-bg-light;
180
+ }
181
+ }
182
+
183
+ .ac-preloader {
184
+ color: $ac-color-text;
185
+ }
186
+
137
187
  .section-padding {
138
188
  padding: 100px 0;
139
189
  }
@@ -167,21 +217,27 @@
167
217
  .is-not-fixed {
168
218
  position: inherit !important;
169
219
  }
220
+
170
221
  .b-1 {
171
222
  border: 1px solid $ac-white-light;
172
223
  }
224
+
173
225
  .b-t-1 {
174
226
  border-top: 1px solid $ac-white-light;
175
227
  }
228
+
176
229
  .b-b-1 {
177
230
  border-bottom: 1px solid $ac-white-light;
178
231
  }
232
+
179
233
  .b-l-1 {
180
234
  border-left: 1px solid $ac-white-light;
181
235
  }
236
+
182
237
  .b-r-1 {
183
238
  border-right: 1px solid $ac-white-light;
184
239
  }
240
+
185
241
  // border none
186
242
  .is-border-none {
187
243
  border: none !important;
@@ -207,6 +263,7 @@
207
263
  opacity: 0.5;
208
264
  cursor: not-allowed;
209
265
  }
266
+
210
267
  .no-data-image {
211
268
  img {
212
269
  width: 250px;
@@ -268,13 +325,13 @@
268
325
  }
269
326
 
270
327
  &::-webkit-scrollbar-thumb {
271
- background-color: #929292;
328
+ background-color: $ac-gray-light;
272
329
  border-radius: 50px;
273
330
  height: 2px !important;
274
331
  }
275
332
 
276
333
  &::-webkit-scrollbar-thumb:hover {
277
- background-color: #929292;
334
+ background-color: $ac-gray-light;
278
335
  }
279
336
 
280
337
  &:hover::-webkit-scrollbar-corner {
@@ -315,33 +372,33 @@
315
372
  }
316
373
 
317
374
  &::-webkit-scrollbar-thumb {
318
- background-color: #929292;
375
+ background-color: $ac-gray-light;
319
376
  border-radius: 50px;
320
377
  height: 2px !important;
321
378
  }
322
379
 
323
380
  &::-moz-scrollbar-thumb {
324
- background-color: #929292;
381
+ background-color: $ac-gray-light;
325
382
  border-radius: 50px;
326
383
  height: 2px !important;
327
384
  }
328
385
 
329
386
  &::-ms-scrollbar-thumb {
330
- background-color: #929292;
387
+ background-color: $ac-gray-light;
331
388
  border-radius: 50px;
332
389
  height: 2px !important;
333
390
  }
334
391
 
335
392
  &::-webkit-scrollbar-thumb:hover {
336
- background-color: #929292;
393
+ background-color: $ac-gray-light;
337
394
  }
338
395
 
339
396
  &::-moz-scrollbar-thumb:hover {
340
- background-color: #929292;
397
+ background-color: $ac-gray-light;
341
398
  }
342
399
 
343
400
  &::-ms-scrollbar-thumb:hover {
344
- background-color: #929292;
401
+ background-color: $ac-gray-light;
345
402
  }
346
403
 
347
404
  &:hover::-webkit-scrollbar-corner {
@@ -372,13 +429,13 @@
372
429
  }
373
430
 
374
431
  &::-webkit-scrollbar-thumb {
375
- background-color: #929292;
432
+ background-color: $ac-gray-light;
376
433
  border-radius: 50px;
377
434
  width: 2px !important;
378
435
  }
379
436
 
380
437
  &::-webkit-scrollbar-thumb:hover {
381
- background-color: #929292;
438
+ background-color: $ac-gray-light;
382
439
  }
383
440
 
384
441
  &:hover::-webkit-scrollbar-corner {
@@ -401,7 +458,7 @@
401
458
 
402
459
  .is-transparent {
403
460
  border: none;
404
- background: transparent;
461
+ background-color: transparent;
405
462
  }
406
463
 
407
464
  .is-error {
@@ -410,9 +467,18 @@
410
467
  color: $ac-red;
411
468
  text-align: left;
412
469
  }
470
+
413
471
  code {
414
472
  color: $ac-color-heading;
415
473
  }
474
+
475
+ .is-dark-theme {
476
+ code {
477
+ background-color: $dark-bg-light;
478
+ color: $ac-full-white;
479
+ }
480
+ }
481
+
416
482
  .is-danger:not(.ac-button) {
417
483
  color: $ac-danger !important;
418
484
  }
@@ -429,42 +495,57 @@ button {
429
495
  }
430
496
 
431
497
  .tag:not(body) {
432
- background-color: #e5e9f2;
498
+ background-color: $ac-white-light;
433
499
  font-size: 11px;
434
500
  height: 18px;
435
501
  letter-spacing: 0.1px;
436
502
  color: $ac-color-heading;
503
+
504
+ a {
505
+ &:hover {
506
+ color: $ac-color-text;
507
+ }
508
+ }
509
+
437
510
  &.is-available {
438
511
  background-color: #27b064;
439
512
  color: $ac-white;
440
513
  }
514
+
441
515
  &.is-success {
442
516
  background-color: $ac-green;
443
517
  color: $ac-white;
518
+
444
519
  &.is-light {
445
520
  background-color: rgba(39, 176, 100, 0.2);
446
521
  color: $ac-green;
447
522
  }
448
523
  }
524
+
449
525
  &.is-primary {
450
526
  background-color: $ac-primary;
451
527
  color: $ac-white;
528
+
452
529
  &.is-light {
453
530
  background-color: rgba(25, 113, 189, 0.2);
454
531
  color: $ac-primary;
455
532
  }
456
533
  }
534
+
457
535
  &.is-gray {
458
536
  background-color: #e5e9f2;
459
- color: #666;
537
+ color: $ac-gray-darker;
460
538
  }
539
+
461
540
  &.is-warning {
462
541
  background-color: $ac-warning;
463
542
  color: $ac-white !important;
464
543
  }
544
+
465
545
  &.is-danger {
466
546
  background-color: $ac-red;
467
547
  color: $ac-white !important;
548
+
468
549
  &.is-light {
469
550
  background-color: rgba(234, 61, 47, 0.2);
470
551
  color: $ac-red !important;
@@ -476,6 +557,7 @@ button {
476
557
  .icon {
477
558
  margin-bottom: 0.5rem;
478
559
  }
560
+
479
561
  .tag {
480
562
  a {
481
563
  font-weight: 500;
@@ -496,12 +578,12 @@ button {
496
578
  top: 12px;
497
579
  width: 100%;
498
580
  height: 1px;
499
- background: $ac-white-light;
581
+ background-color: $ac-white-light;
500
582
  }
501
583
 
502
584
  h5 {
503
585
  color: $ac-color-text;
504
- background: $ac-white;
586
+ background-color: $ac-white;
505
587
  z-index: 2;
506
588
  display: inline-block;
507
589
  position: relative;
@@ -660,7 +742,7 @@ $border_color_4: transparent transparent #585d6e transparent;
660
742
  .ac-footer-action {
661
743
  margin-top: 10px;
662
744
  padding-top: 10px;
663
- background: $ac-white;
745
+ background-color: $ac-white;
664
746
  padding: 10px 20px;
665
747
  margin-left: 0;
666
748
  margin-right: 0;
@@ -686,7 +768,7 @@ $border_color_4: transparent transparent #585d6e transparent;
686
768
  height: 10px;
687
769
  width: 10px;
688
770
  border-radius: 50%;
689
- background: $ac-grey-lightest;
771
+ background-color: $ac-gray-lightest;
690
772
  border: 2px solid $ac-white;
691
773
  display: inline-flex;
692
774
 
@@ -702,6 +784,40 @@ $border_color_4: transparent transparent #585d6e transparent;
702
784
  // Status css
703
785
  // ac-footer sticky end
704
786
 
787
+ // terminal scss start
788
+ .ac-terminal {
789
+ padding: 3px;
790
+ position: fixed;
791
+ bottom: 0px;
792
+ height: 300px;
793
+ width: 100%;
794
+ background-color: $ac-white;
795
+ border: 1px solid var(--ac-white-light);
796
+
797
+ color: $ac-white;
798
+ z-index: 999;
799
+
800
+ .terminal-body {
801
+ font-family: "Inconsolata", monospace;
802
+ background-color: var(--dark-bg-light);
803
+ height: 100%;
804
+ color: $ac-white;
805
+
806
+ strong {
807
+ color: $ac-white;
808
+ }
809
+ }
810
+ }
811
+
812
+ // terminal scss end
813
+ .is-dark-theme {
814
+ a {
815
+ &:hover {
816
+ color: #485fc7;
817
+ }
818
+ }
819
+ }
820
+
705
821
  /****************************************
706
822
  Responsive Classes
707
823
  *****************************************/
@@ -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
@@ -1,7 +1,5 @@
1
1
  // Typography
2
- @import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
3
- // font rubik
4
- @import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,800&display=swap");
2
+ @import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700&display=swap");
5
3
 
6
4
  $ac-family-heading: "Roboto", sans-serif;
7
5
  $ac-family-paragraph: "Roboto", sans-serif;
@@ -22,72 +20,15 @@ $font-size-small: 13px;
22
20
  $font-size-extra-small: 12px;
23
21
  $font-size-tiny: 11px;
24
22
 
25
- // Font weight
26
- $ac-weight-light: 300;
27
- $ac-weight-normal: 400;
28
- $ac-weight-medium: 500;
29
- $ac-weight-semibold: 600;
30
- $ac-weight-bold: 700;
31
- $ac-weight-extra: 800;
32
- $ac-weight-black: 900;
33
-
34
- // Miscellaneous
35
- $ac-easing: ease-out;
36
- $ac-radius-small: 2px;
37
- $ac-radius: 4px;
38
- $ac-radius-large: 6px;
39
- $ac-radius-rounded: 290486px;
40
- $ac-speed: 86ms;
41
-
42
- // Color Base
23
+ // Base Color
43
24
  $ac-orange: #ff8000;
44
25
  $ac-yellow: #f7ad2a;
45
- $ac-green: #27b064;
26
+ $ac-green: #158748;
46
27
  $ac-blue: #0aafff;
47
28
  $ac-purple: #791e94;
48
- $ac-red: #ea3d2f;
49
- $ac-bg: #fff;
29
+ $ac-red: #ff3729;
50
30
 
51
- // Color Border
52
- $ac-border: #a6abbd;
53
- $ac-border-hover: #54657e;
54
-
55
- // Colors Primary
56
- $ac-primary: #1971bd;
57
- $ac-primary-90: #2f7ec3;
58
- $ac-primary-80: #478dca;
59
- $ac-primary-70: #5d9bd0;
60
- $ac-primary-60: #75a9d7;
61
- $ac-primary-50: #8bb7de;
62
- $ac-primary-40: #a3c6e5;
63
- $ac-primary-30: #b9d4eb;
64
- $ac-primary-20: #d1e2f2;
65
- $ac-primary-10: #e7f0f8;
66
-
67
- // $ac-primary-90: scale-color($ac-primary, $lightness: 90%);
68
- // $ac-primary-80: scale-color($ac-primary, $lightness: 80%);
69
- // $ac-primary-70: scale-color($ac-primary, $lightness: 70%);
70
- // $ac-primary-60: scale-color($ac-primary, $lightness: 60%);
71
- // $ac-primary-50: scale-color($ac-primary, $lightness: 50%);
72
- // $ac-primary-40: scale-color($ac-primary, $lightness: 40%);
73
- // $ac-primary-30: scale-color($ac-primary, $lightness: 30%);
74
- // $ac-primary-20: scale-color($ac-primary, $lightness: 20%);
75
- // $ac-primary-10: scale-color($ac-primary, $lightness: 10%);
76
-
77
- // Colors black
78
- $ac-black: #000000;
79
- $ac-color-text-90: #323232;
80
- $ac-gray-darker: #494949;
81
- $ac-gray-dark: #5f5f5f;
82
- $ac-gray: #767676;
83
- $ac-gray-light: #8d8d8d;
84
- $ac-gray-lighter: #a4a4a4;
85
- $ac-grey-lightest: #d1d1d1;
86
- $ac-white-light: #e7e7e7;
87
- $ac-white-lighter: #f1f1f1;
88
- $ac-white: #ffffff;
89
-
90
- // Color Products
31
+ // Products Color
91
32
  $voyager-primary: #2d2a78;
92
33
  $guard-primary: #d84e27;
93
34
  $kubeci-primary: #2c3e50;
@@ -101,11 +42,103 @@ $servicebroker-primary: #29b4a2;
101
42
  $stash-primary: #5e2dea;
102
43
  $swift-primary: #3f51b6;
103
44
 
45
+ // Colors Primary
46
+ // root colors
47
+ :root {
48
+ --hsl-hue: 208;
49
+ --hsl-saturation: 77%;
50
+ --hsl-lightness: 42%;
51
+ --contrast-threshold: 60%;
52
+ --ac-bg: #ffffff;
53
+ --ac-white: #ffffff;
54
+ --ac-full-white: #ffffff;
55
+ --ac-gray-dark: #5f5f5f;
56
+ --ac-gray-light: #8d8d8d;
57
+ --ac-gray-lightest: #d1d1d1;
58
+ --ac-white-light: #e7e7e7;
59
+ --ac-white-lighter: #f1f1f1;
60
+
61
+ --ac-black: #000000;
62
+ --ac-color-text-90: #323232;
63
+ --ac-link-black: #32325d;
64
+ --ac-gray-darker: #494949;
65
+ --ac-gray: #767676;
66
+ --ac-gray-lighter: #a4a4a4;
67
+ --ac-white-text: #b4c0cc;
68
+
69
+ // theme color
70
+ --dark-bg: #21272e;
71
+ --dark-bg-light: #2e323c;
72
+
73
+ --ac-blue-light: #eceff4;
74
+ --ac-bg-light-gray: #f4f6f9;
75
+ --table-header: #e4e8ef;
76
+ --ac-label-text: #a6abbd;
77
+
78
+ --font-hsl-hue: 0;
79
+ --font-hsl-saturation: 0%;
80
+ --font-hsl-lightness: 11%;
81
+
82
+ --ac-primary: hsla(
83
+ var(--hsl-hue),
84
+ var(--hsl-saturation),
85
+ var(--hsl-lightness),
86
+ 1
87
+ );
88
+
89
+ --ac-text: hsla(
90
+ var(--font-hsl-hue),
91
+ calc(var(--font-hsl-saturation) + 10%),
92
+ calc(var(--font-hsl-lightness) + 10%),
93
+ 1
94
+ );
95
+ --ac-text-heading: hsla(
96
+ var(--font-hsl-hue),
97
+ var(--font-hsl-saturation),
98
+ var(--font-hsl-lightness),
99
+ 1
100
+ );
101
+ --ac-color-value: hsl(
102
+ var(--font-hsl-hue),
103
+ var(--font-hsl-saturation),
104
+ calc(var(--font-hsl-lightness) + 25%)
105
+ );
106
+ }
107
+
108
+ $ac-bg: var(--ac-bg);
109
+ $ac-primary: var(--ac-primary);
110
+ $ac-color-value: var(--ac-color-value);
111
+
112
+ // Colors
113
+ $ac-black: var(--ac-black);
114
+ $ac-color-text-90: var(--ac-color-text-90);
115
+ $ac-link-black: var(--ac-link-black);
116
+ $ac-gray-darker: var(--ac-gray-darker);
117
+ $ac-gray-dark: var(--ac-gray-dark);
118
+ $ac-gray: var(--ac-gray);
119
+ $ac-gray-light: var(--ac-gray-light);
120
+ $ac-gray-lighter: var(--ac-gray-lighter);
121
+ $ac-gray-lightest: var(--ac-gray-lightest);
122
+ $ac-white-light: var(--ac-white-light);
123
+ $ac-white-lighter: var(--ac-white-lighter);
124
+ $ac-white: var(--ac-white);
125
+ $ac-full-white: var(--ac-full-white);
126
+
127
+ $ac-blue-light: var(--ac-blue-light);
128
+ $ac-bg-light-gray: var(--ac-bg-light-gray);
129
+ $table-header: var(--table-header);
130
+ $ac-label-text: var(--ac-label-text);
131
+
132
+ // for dark theme CSS
133
+ $dark-bg: var(--dark-bg);
134
+ $dark-bg-light: var(--dark-bg-light);
135
+
104
136
  /* Deafult Margin & Padding view-height & view-width */
105
137
  @for $i from 0 through 100 {
106
138
  .m-#{$i} {
107
139
  margin: #{$i}px !important;
108
140
  }
141
+
109
142
  .mt-#{$i} {
110
143
  margin-top: #{$i}px !important;
111
144
  }
@@ -121,9 +154,11 @@ $swift-primary: #3f51b6;
121
154
  .mr-#{$i} {
122
155
  margin-right: #{$i}px !important;
123
156
  }
157
+
124
158
  .p-#{$i} {
125
159
  padding: #{$i}px !important;
126
160
  }
161
+
127
162
  .pt-#{$i} {
128
163
  padding-top: #{$i}px !important;
129
164
  }