sdga-ui 1.0.0

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 (69) hide show
  1. package/.editorconfig +23 -0
  2. package/.prettierignore +73 -0
  3. package/.prettierrc +17 -0
  4. package/LICENSE +21 -0
  5. package/README.md +167 -0
  6. package/css/dga-ui.css +27286 -0
  7. package/css/dga-ui.css.map +1 -0
  8. package/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Bold.ttf +0 -0
  9. package/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-ExtraLight.ttf +0 -0
  10. package/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Light.ttf +0 -0
  11. package/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Medium.ttf +0 -0
  12. package/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Regular.ttf +0 -0
  13. package/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-SemiBold.ttf +0 -0
  14. package/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Thin.ttf +0 -0
  15. package/fonts/IBM_Plex_Sans_Arabic/OFL.txt +93 -0
  16. package/package.json +36 -0
  17. package/theme/_fonts.scss +58 -0
  18. package/theme/_functions.scss +12 -0
  19. package/theme/_variables.scss +50 -0
  20. package/theme/components/_accordion.scss +35 -0
  21. package/theme/components/_alerts.scss +12 -0
  22. package/theme/components/_badges.scss +8 -0
  23. package/theme/components/_breadcrumb.scss +13 -0
  24. package/theme/components/_buttons.scss +270 -0
  25. package/theme/components/_cards.scss +21 -0
  26. package/theme/components/_carousel.scss +33 -0
  27. package/theme/components/_content.scss +211 -0
  28. package/theme/components/_dropdowns.scss +45 -0
  29. package/theme/components/_forms-check.scss +124 -0
  30. package/theme/components/_forms-floating.scss +17 -0
  31. package/theme/components/_forms-inputs.scss +70 -0
  32. package/theme/components/_forms-range.scss +26 -0
  33. package/theme/components/_forms-select.scss +47 -0
  34. package/theme/components/_forms-switch.scss +64 -0
  35. package/theme/components/_forms-validation.scss +16 -0
  36. package/theme/components/_forms.scss +14 -0
  37. package/theme/components/_list-group.scss +26 -0
  38. package/theme/components/_modals.scss +42 -0
  39. package/theme/components/_navbar.scss +40 -0
  40. package/theme/components/_navigation.scss +151 -0
  41. package/theme/components/_offcanvas.scss +15 -0
  42. package/theme/components/_overlays.scss +112 -0
  43. package/theme/components/_pagination.scss +39 -0
  44. package/theme/components/_popovers.scss +26 -0
  45. package/theme/components/_progress.scss +11 -0
  46. package/theme/components/_spinners.scss +11 -0
  47. package/theme/components/_tables.scss +48 -0
  48. package/theme/components/_toasts.scss +17 -0
  49. package/theme/components/_tooltips.scss +15 -0
  50. package/theme/config/_base.scss +112 -0
  51. package/theme/config/_colors.scss +303 -0
  52. package/theme/config/_effects.scss +228 -0
  53. package/theme/config/_radius.scss +78 -0
  54. package/theme/config/_spacing.scss +156 -0
  55. package/theme/config/_typography.scss +118 -0
  56. package/theme/customizations/_alerts.scss +242 -0
  57. package/theme/customizations/_badges.scss +15 -0
  58. package/theme/customizations/_buttons.scss +209 -0
  59. package/theme/customizations/_cards.scss +117 -0
  60. package/theme/customizations/_forms-check.scss +279 -0
  61. package/theme/customizations/_forms-inputs.scss +9 -0
  62. package/theme/customizations/_forms-switch.scss +91 -0
  63. package/theme/customizations/_forms.scss +5 -0
  64. package/theme/customizations/_global.scss +25 -0
  65. package/theme/customizations/_links.scss +47 -0
  66. package/theme/customizations/_tables.scss +68 -0
  67. package/theme/customizations/_toasts.scss +222 -0
  68. package/theme/customizations/_utilities.scss +138 -0
  69. package/theme/dga-ui.scss +28 -0
@@ -0,0 +1,112 @@
1
+ // Bootstrap 5.3 - Overlay Components Variables
2
+ // Modals, Tooltips, Popovers, Toasts, Offcanvas
3
+
4
+ // ============================================
5
+ // MODALS
6
+ // ============================================
7
+
8
+ $modal-inner-padding: 1rem;
9
+
10
+ $modal-footer-margin-between: 0.5rem;
11
+
12
+ $modal-dialog-margin: 0.5rem;
13
+ $modal-dialog-margin-y-sm-up: 1.75rem;
14
+
15
+ $modal-title-line-height: $line-height-base;
16
+
17
+ $modal-content-color: null;
18
+ $modal-content-bg: $white;
19
+ $modal-content-border-color: rgba($black, 0.2);
20
+ $modal-content-border-width: $border-width;
21
+ $modal-content-border-radius: $radius-lg;
22
+ $modal-content-inner-border-radius: calc(#{$modal-content-border-radius} - #{$modal-content-border-width});
23
+ $modal-content-box-shadow-xs: 0 0.25rem 0.5rem rgba($black, 0.5);
24
+ $modal-content-box-shadow-sm-up: 0 0.5rem 1rem rgba($black, 0.5);
25
+
26
+ $modal-backdrop-bg: $black;
27
+ $modal-backdrop-opacity: 0.5;
28
+
29
+ $modal-header-border-color: $border-color;
30
+ $modal-header-border-width: $modal-content-border-width;
31
+ $modal-header-padding-y: 1rem;
32
+ $modal-header-padding-x: 1rem;
33
+ $modal-header-padding: $modal-header-padding-y $modal-header-padding-x;
34
+
35
+ $modal-footer-bg: null;
36
+ $modal-footer-border-color: $modal-header-border-color;
37
+ $modal-footer-border-width: $modal-header-border-width;
38
+
39
+ $modal-sm: 300px;
40
+ $modal-md: 500px;
41
+ $modal-lg: 800px;
42
+ $modal-xl: 1140px;
43
+
44
+ $modal-fade-transform: translate(0, -50px);
45
+ $modal-show-transform: none;
46
+ $modal-transition: transform 0.3s ease-out;
47
+ $modal-scale-transform: scale(1.02);
48
+
49
+ // ============================================
50
+ // TOOLTIPS
51
+ // ============================================
52
+
53
+ $tooltip-font-size: $font-size-sm;
54
+ $tooltip-max-width: 200px;
55
+ $tooltip-color: $white;
56
+ $tooltip-bg: $black;
57
+ $tooltip-border-radius: $radius-sm;
58
+ $tooltip-opacity: 0.9;
59
+ $tooltip-padding-y: 0.25rem;
60
+ $tooltip-padding-x: 0.5rem;
61
+ $tooltip-margin: null;
62
+
63
+ $tooltip-arrow-width: 0.8rem;
64
+ $tooltip-arrow-height: 0.4rem;
65
+ $tooltip-arrow-color: null;
66
+
67
+ // ============================================
68
+ // POPOVERS
69
+ // ============================================
70
+
71
+ $popover-font-size: $font-size-sm;
72
+ $popover-bg: $white;
73
+ $popover-max-width: 276px;
74
+ $popover-border-width: $border-width;
75
+ $popover-border-color: rgba($black, 0.2);
76
+ $popover-border-radius: $radius-lg;
77
+ $popover-inner-border-radius: calc(#{$popover-border-radius} - #{$popover-border-width});
78
+ $popover-box-shadow: 0 0.5rem 1rem rgba($black, 0.15);
79
+
80
+ $popover-header-font-size: $font-size-base;
81
+ $popover-header-bg: $gray-100;
82
+ $popover-header-color: $headings-color;
83
+ $popover-header-padding-y: 0.5rem;
84
+ $popover-header-padding-x: 0.75rem;
85
+
86
+ $popover-body-color: $body-color;
87
+ $popover-body-padding-y: 0.5rem;
88
+ $popover-body-padding-x: 0.75rem;
89
+
90
+ $popover-arrow-width: 1rem;
91
+ $popover-arrow-height: 0.5rem;
92
+ $popover-arrow-color: $popover-bg;
93
+
94
+ $popover-arrow-outer-color: rgba($black, 0.25);
95
+
96
+ // ============================================
97
+ // OFFCANVAS
98
+ // ============================================
99
+
100
+ $offcanvas-padding-y: 1rem;
101
+ $offcanvas-padding-x: 1rem;
102
+ $offcanvas-horizontal-width: 400px;
103
+ $offcanvas-vertical-height: 30vh;
104
+ $offcanvas-transition-duration: 0.3s;
105
+ $offcanvas-border-color: $modal-content-border-color;
106
+ $offcanvas-border-width: $modal-content-border-width;
107
+ $offcanvas-title-line-height: $modal-title-line-height;
108
+ $offcanvas-bg-color: $white;
109
+ $offcanvas-color: $body-color;
110
+ $offcanvas-box-shadow: 0 0.125rem 0.25rem rgba($black, 0.075);
111
+ $offcanvas-backdrop-bg: $modal-backdrop-bg;
112
+ $offcanvas-backdrop-opacity: $modal-backdrop-opacity;
@@ -0,0 +1,39 @@
1
+ // Bootstrap 5.3 - Pagination Component Variables
2
+
3
+ $pagination-padding-y: 0.375rem;
4
+ $pagination-padding-x: 0.75rem;
5
+ $pagination-padding-y-sm: 0.25rem;
6
+ $pagination-padding-x-sm: 0.5rem;
7
+ $pagination-padding-y-lg: 0.75rem;
8
+ $pagination-padding-x-lg: 1.5rem;
9
+
10
+ $pagination-font-size: $font-size-base;
11
+
12
+ $pagination-color: $primary;
13
+ $pagination-bg: $white;
14
+ $pagination-border-radius: $radius-sm;
15
+ $pagination-border-width: $border-width;
16
+ $pagination-margin-start: calc(#{$pagination-border-width} * -1);
17
+ $pagination-border-color: $gray-300;
18
+
19
+ $pagination-focus-color: $link-hover-color;
20
+ $pagination-focus-bg: $gray-200;
21
+ $pagination-focus-box-shadow: $input-focus-box-shadow;
22
+ $pagination-focus-outline: 0;
23
+
24
+ $pagination-hover-color: $link-hover-color;
25
+ $pagination-hover-bg: $gray-200;
26
+ $pagination-hover-border-color: $gray-300;
27
+
28
+ $pagination-active-color: $white;
29
+ $pagination-active-bg: $primary;
30
+ $pagination-active-border-color: $primary;
31
+
32
+ $pagination-disabled-color: $gray-600;
33
+ $pagination-disabled-bg: $white;
34
+ $pagination-disabled-border-color: $gray-300;
35
+
36
+ $pagination-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
37
+
38
+ $pagination-border-radius-sm: $radius-sm;
39
+ $pagination-border-radius-lg: $radius-lg;
@@ -0,0 +1,26 @@
1
+ // Bootstrap 5.3 - Popover Component Variables
2
+
3
+ $popover-font-size: $font-size-sm;
4
+ $popover-bg: $white;
5
+ $popover-max-width: 276px;
6
+ $popover-border-width: $border-width;
7
+ $popover-border-color: rgba($black, 0.2);
8
+ $popover-border-radius: $radius-lg;
9
+ $popover-inner-border-radius: calc(#{$popover-border-radius} - #{$popover-border-width});
10
+ $popover-box-shadow: 0 0.5rem 1rem rgba($black, 0.15);
11
+
12
+ $popover-header-font-size: $font-size-base;
13
+ $popover-header-bg: $gray-100;
14
+ $popover-header-color: $headings-color;
15
+ $popover-header-padding-y: 0.5rem;
16
+ $popover-header-padding-x: 0.75rem;
17
+
18
+ $popover-body-color: $body-color;
19
+ $popover-body-padding-y: 0.5rem;
20
+ $popover-body-padding-x: 0.75rem;
21
+
22
+ $popover-arrow-width: 1rem;
23
+ $popover-arrow-height: 0.5rem;
24
+ $popover-arrow-color: $popover-bg;
25
+
26
+ $popover-arrow-outer-color: rgba($black, 0.25);
@@ -0,0 +1,11 @@
1
+ // Bootstrap 5.3 - Progress Bar Component Variables
2
+
3
+ $progress-height: 1rem;
4
+ $progress-font-size: $font-size-base * 0.75;
5
+ $progress-bg: $gray-200;
6
+ $progress-border-radius: $radius-sm;
7
+ $progress-box-shadow: inset 0 0.1rem 0.1rem rgba($black, 0.1);
8
+ $progress-bar-color: $white;
9
+ $progress-bar-bg: $primary;
10
+ $progress-bar-animation-timing: 1s linear infinite;
11
+ $progress-bar-transition: width 0.6s ease;
@@ -0,0 +1,11 @@
1
+ // Bootstrap 5.3 - Spinner Component Variables
2
+
3
+ $spinner-width: 2rem;
4
+ $spinner-height: $spinner-width;
5
+ $spinner-vertical-align: -0.125em;
6
+ $spinner-border-width: 0.25em;
7
+ $spinner-animation-speed: 0.75s;
8
+
9
+ $spinner-width-sm: 1rem;
10
+ $spinner-height-sm: $spinner-width-sm;
11
+ $spinner-border-width-sm: 0.2em;
@@ -0,0 +1,48 @@
1
+ $table-cell-padding-y: .5rem;
2
+ $table-cell-padding-x: 1rem;
3
+ $table-cell-padding-y-sm: .25rem;
4
+ $table-cell-padding-x-sm: .5rem;
5
+
6
+ $table-cell-vertical-align: top;
7
+
8
+ $table-color: $black;
9
+ $table-bg: var(--#{$prefix}body-bg);
10
+ $table-accent-bg: transparent;
11
+ $table-border: $neutral-300;
12
+ $table-border-width: 1px;
13
+
14
+
15
+ $table-thead-bg: $neutral-100;
16
+ $table-thead-border-width: $table-border-width;
17
+ $table-thead-border-radius: $radius-md;
18
+ $table-thead-border-color: $table-border;
19
+
20
+ $table-th-font-weight: $font-weight-medium;
21
+ $table-th-color: $neutral-700;
22
+ $table-th-border-width: $table-border-width;
23
+ $table-th-border-color: $table-border;
24
+
25
+ $table-striped-color: $table-color;
26
+ $table-striped-bg-factor: 1;
27
+ $table-striped-bg: rgba($neutral-50, $table-striped-bg-factor);
28
+
29
+ $table-active-color: $table-color;
30
+ $table-active-bg-factor: 1;
31
+ $table-active-bg: rgba($neutral-50, $table-active-bg-factor);
32
+
33
+ $table-hover-color: $table-color;
34
+ $table-hover-bg-factor: 1;
35
+ $table-hover-bg: rgba($neutral-50, $table-hover-bg-factor);
36
+
37
+ $table-border-factor: .2;
38
+ $table-border-width: var(--#{$prefix}border-width);
39
+ $table-border-color: $table-border;
40
+
41
+ $table-striped-order: even;
42
+ $table-striped-columns-order: even;
43
+
44
+ $table-group-separator-color: currentcolor;
45
+
46
+ $table-caption-color: var(--#{$prefix}secondary-color);
47
+
48
+ $table-bg-scale: -80%;
@@ -0,0 +1,17 @@
1
+ $toast-max-width: 30.25rem;
2
+ $toast-padding-y: $spacer;
3
+ $toast-padding-x: $spacer * 1.5;
4
+ $toast-font-size: 1rem;
5
+ $toast-color: $gray-700;
6
+ $toast-background-color: $white;
7
+ $toast-border-width: var(--#{$prefix}border-width);
8
+ $toast-border-color: var(--#{$prefix}border-color-translucent);
9
+ $toast-border-radius: $radius-md;
10
+ $toast-box-shadow: $box-shadow-lg;
11
+ $toast-spacing: $container-padding-x;
12
+ $toast-icon-bg: var(--#{$prefix}toast-icon-bg);
13
+ $toast-icon-color: var(--#{$prefix}toast-icon-color);
14
+ $toast-title-color: var(--#{$prefix}toast-title-color);
15
+ $toast-header-color: var(--#{$prefix}secondary-color);
16
+ $toast-header-background-color: transparent;
17
+ $toast-header-border-color: transparent;
@@ -0,0 +1,15 @@
1
+ // Bootstrap 5.3 - Tooltip Component Variables
2
+
3
+ $tooltip-font-size: $font-size-sm;
4
+ $tooltip-max-width: 200px;
5
+ $tooltip-color: $white;
6
+ $tooltip-bg: $black;
7
+ $tooltip-border-radius: $radius-sm;
8
+ $tooltip-opacity: 0.9;
9
+ $tooltip-padding-y: 0.25rem;
10
+ $tooltip-padding-x: 0.5rem;
11
+ $tooltip-margin: null;
12
+
13
+ $tooltip-arrow-width: 0.8rem;
14
+ $tooltip-arrow-height: 0.4rem;
15
+ $tooltip-arrow-color: null;
@@ -0,0 +1,112 @@
1
+ // Bootstrap 5.3 - Component Base Variables
2
+ // Body, Links, Borders, Shadows, Focus, Layout, and Utilities
3
+
4
+ @use 'sass:color';
5
+
6
+ // ============================================
7
+ // PREFIX
8
+ // ============================================
9
+
10
+ $prefix: dga-;
11
+
12
+ // ============================================
13
+ // BODY
14
+ // ============================================
15
+
16
+ $body-bg: $white;
17
+ $body-color: $black;
18
+ $body-text-align: start;
19
+
20
+ // ============================================
21
+ // LINKS
22
+ // ============================================
23
+
24
+ $link-color: $primary;
25
+ $link-decoration: none;
26
+ $link-hover-color: color.scale($primary, $lightness: -32%);
27
+ $link-hover-decoration: underline;
28
+
29
+ // ============================================
30
+ // COMPONENTS BASE
31
+ // ============================================
32
+
33
+ $component-active-color: $white;
34
+ $component-active-bg: $primary;
35
+
36
+ // Border
37
+ $border-width: 1px;
38
+ $border-widths: (
39
+ 0: 0,
40
+ 1: 1px,
41
+ 2: 2px,
42
+ 3: 3px,
43
+ 4: 4px,
44
+ 5: 5px
45
+ );
46
+ // Shadow base color (using SDGA neutral-900 shade)
47
+ $shadow-color: $gray-900;
48
+ $border-color: $gray-500;
49
+
50
+ // Focus
51
+ $focus-ring-width: 0.25rem;
52
+ $focus-ring-opacity: 0.25;
53
+ $focus-ring-color: rgba($shadow-color, $focus-ring-opacity);
54
+ $focus-ring-blur: 0;
55
+ $focus-ring-box-shadow: 0 0 $focus-ring-blur $focus-ring-width $focus-ring-color;
56
+
57
+ // ============================================
58
+ // UTILITIES
59
+ // ============================================
60
+
61
+ $enable-shadows: true;
62
+ $enable-negative-margins: true;
63
+ $enable-smooth-scroll: true;
64
+ $enable-rfs: true;
65
+ $enable-important-utilities: true;
66
+ $enable-ripple-effect: true !default;
67
+
68
+ // ============================================
69
+ // CONTAINER
70
+ // ============================================
71
+
72
+ $container-max-widths: (
73
+ sm: 540px,
74
+ md: 720px,
75
+ lg: 960px,
76
+ xl: 1140px,
77
+ xxl: 1320px
78
+ );
79
+
80
+ $container-padding-x: 1rem;
81
+
82
+ // ============================================
83
+ // GRID
84
+ // ============================================
85
+
86
+ $grid-columns: 12;
87
+ $grid-gutter-width: 1.5rem;
88
+ $grid-row-columns: 6;
89
+
90
+ // ============================================
91
+ // Z-INDEX
92
+ // ============================================
93
+
94
+ $zindex-dropdown: 1000;
95
+ $zindex-sticky: 1020;
96
+ $zindex-fixed: 1030;
97
+ $zindex-offcanvas-backdrop: 1040;
98
+ $zindex-offcanvas: 1045;
99
+ $zindex-modal-backdrop: 1050;
100
+ $zindex-modal: 1055;
101
+ $zindex-popover: 1070;
102
+ $zindex-tooltip: 1080;
103
+ $zindex-toast: 1090;
104
+
105
+
106
+ // ============================================
107
+ // Responsive Variables
108
+ // ============================================
109
+
110
+ $mobile: 48rem;
111
+ $tablet: 63.9375rem;
112
+ $desktop: 64rem;
@@ -0,0 +1,303 @@
1
+ // Bootstrap 5.3 - Color System Variables
2
+ // Customized with SDGA Palette System - All Shades Available
3
+
4
+ // Grays
5
+ $white: #FFFFFF;
6
+ $gray-25: #FCFCFD;
7
+ $gray-50: #F9FAFB;
8
+ $gray-100: #F3F4F6; // --SDGA-neutral-100
9
+ $gray-200: #E5E7EB; // --SDGA-neutral-200
10
+ $gray-300: #D2D6DB; // --SDGA-neutral-300
11
+ $gray-400: #9DA4AE; // --SDGA-neutral-400
12
+ $gray-500: #6C737F; // --SDGA-neutral-500
13
+ $gray-600: #4D5761; // --SDGA-neutral-600
14
+ $gray-700: #384250; // --SDGA-neutral-700
15
+ $gray-800: #1F2A37; // --SDGA-neutral-800
16
+ $gray-900: #111927; // --SDGA-neutral-900
17
+ $gray-950: #0D121C; // --SDGA-neutral-950
18
+ $black: #161616;
19
+
20
+ // SA Palette (full range)
21
+ $sa-25: #F7FDF9;
22
+ $sa-50: #F3FCF6;
23
+ $sa-100: #DFF6E7;
24
+ $sa-200: #B8EACB;
25
+ $sa-300: #88D8AD;
26
+ $sa-400: #54C08A;
27
+ $sa-500: #25935F;
28
+ $sa-600: #1B8354;
29
+ $sa-700: #166A45;
30
+ $sa-800: #14573A;
31
+ $sa-900: #104631;
32
+ $sa-950: #092A1E;
33
+
34
+
35
+ // Gold Palette (full range)
36
+ $gold-25: #FFFEF7;
37
+ $gold-50: #FFFEF2;
38
+ $gold-100: #FFFCE6;
39
+ $gold-200: #FCF3BD;
40
+ $gold-300: #FAE996;
41
+ $gold-400: #F7D54D;
42
+ $gold-500: #F5BD02;
43
+ $gold-600: #DBA102;
44
+ $gold-700: #B87B02;
45
+ $gold-800: #945C01;
46
+ $gold-900: #6E3C00;
47
+ $gold-950: #472400;
48
+
49
+
50
+ // Lavender Palette (full range)
51
+ $lavender-25: #FEFCFF;
52
+ $lavender-50: #F9F5FA;
53
+ $lavender-100: #F2E9F5;
54
+ $lavender-200: #E1CCE8;
55
+ $lavender-300: #CCADD9;
56
+ $lavender-400: #A57BBA;
57
+ $lavender-500: #80519F;
58
+ $lavender-600: #6D428F;
59
+ $lavender-700: #532D75;
60
+ $lavender-800: #3D1D5E;
61
+ $lavender-900: #281047;
62
+ $lavender-950: #16072E;
63
+
64
+ // Error/Danger Palette (full range)
65
+ $error-25: #FFFBFA;
66
+ $error-50: #FEF3F2;
67
+ $error-100: #FEE4E2;
68
+ $error-200: #FECDCA;
69
+ $error-300: #FDA29B;
70
+ $error-400: #F97066;
71
+ $error-500: #F04438;
72
+ $error-600: #D92D20;
73
+ $error-700: #B42318;
74
+ $error-800: #912018;
75
+ $error-900: #7A271A;
76
+ $error-950: #55160C;
77
+
78
+ // Warning Palette (full range)
79
+ $warning-25: #FFFCF5;
80
+ $warning-50: #FFFAEB;
81
+ $warning-100: #FEF0C7;
82
+ $warning-200: #FEDF89;
83
+ $warning-300: #FEC84B;
84
+ $warning-400: #FDB022;
85
+ $warning-500: #F79009;
86
+ $warning-600: #DC6803;
87
+ $warning-700: #B54708;
88
+ $warning-800: #93370D;
89
+ $warning-900: #7A2E0E;
90
+ $warning-950: #4E1D09;
91
+
92
+ // Info Palette (full range)
93
+ $info-25: #F5FAFF;
94
+ $info-50: #EFF8FF;
95
+ $info-100: #D1E9FF;
96
+ $info-200: #B2DDFF;
97
+ $info-300: #84CAFF;
98
+ $info-400: #53B1FD;
99
+ $info-500: #2E90FA;
100
+ $info-600: #1570EF;
101
+ $info-700: #175CD3;
102
+ $info-800: #1849A9;
103
+ $info-900: #194185;
104
+ $info-950: #102A56;
105
+
106
+ // Success Palette (full range)
107
+ $success-25: #F6FEF9;
108
+ $success-50: #ECFDF3;
109
+ $success-100: #DCFAE6;
110
+ $success-200: #ABEFC6;
111
+ $success-300: #75E0A7;
112
+ $success-400: #47CD89;
113
+ $success-500: #17B26A;
114
+ $success-600: #079455;
115
+ $success-700: #067647;
116
+ $success-800: #085D3A;
117
+ $success-900: #074D31;
118
+ $success-950: #053321;
119
+
120
+ // ============================================
121
+ // COLOR SYSTEM - Map SDGA Palette to Bootstrap
122
+ // ============================================
123
+ // semantic Palette (full range)
124
+ $primary: $sa-600;
125
+ $primary-25: $sa-25;
126
+ $primary-50: $sa-50;
127
+ $primary-100: $sa-100;
128
+ $primary-200: $sa-200;
129
+ $primary-300: $sa-300;
130
+ $primary-400: $sa-400;
131
+ $primary-500: $sa-500;
132
+ $primary-600: $sa-600;
133
+ $primary-700: $sa-700;
134
+ $primary-800: $sa-800;
135
+ $primary-900: $sa-900;
136
+ $primary-950: $sa-950;
137
+
138
+ $secondary: $gray-100;
139
+ $secondary-25: $gray-25;
140
+ $secondary-50: $gray-50;
141
+ $secondary-100: $gray-100;
142
+ $secondary-200: $gray-200;
143
+ $secondary-300: $gray-300;
144
+ $secondary-400: $gray-400;
145
+ $secondary-500: $gray-500;
146
+ $secondary-600: $gray-600;
147
+ $secondary-700: $gray-700;
148
+ $secondary-800: $gray-800;
149
+ $secondary-900: $gray-900;
150
+ $secondary-950: $gray-950;
151
+
152
+ $danger: $error-600;
153
+ $danger-25: $error-25;
154
+ $danger-50: $error-50;
155
+ $danger-100: $error-100;
156
+ $danger-200: $error-200;
157
+ $danger-300: $error-300;
158
+ $danger-400: $error-400;
159
+ $danger-500: $error-500;
160
+ $danger-600: $error-600;
161
+ $danger-700: $error-700;
162
+ $danger-800: $error-800;
163
+ $danger-900: $error-900;
164
+ $danger-950: $error-950;
165
+
166
+ $neutral: $gray-950;
167
+ $neutral-25: $gray-25;
168
+ $neutral-50: $gray-50;
169
+ $neutral-100: $gray-100;
170
+ $neutral-200: $gray-200;
171
+ $neutral-300: $gray-300;
172
+ $neutral-400: $gray-400;
173
+ $neutral-500: $gray-500;
174
+ $neutral-600: $gray-600;
175
+ $neutral-700: $gray-700;
176
+ $neutral-800: $gray-800;
177
+ $neutral-900: $gray-900;
178
+ $neutral-950: $gray-950;
179
+
180
+ $success: $success-600;
181
+ $info: $info-600;
182
+ $warning: $warning-600;
183
+ $light: $gray-50;
184
+ $dark: $gray-800;
185
+
186
+
187
+ $theme-colors: (
188
+ "primary": $primary,
189
+ "secondary": $secondary,
190
+ "success": $success,
191
+ "info": $info,
192
+ "warning": $warning,
193
+ "danger": $danger,
194
+ "light": $light,
195
+ "dark": $dark,
196
+ // Additional custom colors from SDGA palette
197
+ "lavender": $lavender-600,
198
+ "neutral": $neutral,
199
+ // Primary shades
200
+ "primary-25": $primary-25,
201
+ "primary-50": $primary-50,
202
+ "primary-100": $primary-100,
203
+ "primary-200": $primary-200,
204
+ "primary-300": $primary-300,
205
+ "primary-400": $primary-400,
206
+ "primary-500": $primary-500,
207
+ "primary-600": $primary-600,
208
+ "primary-700": $primary-700,
209
+ "primary-800": $primary-800,
210
+ "primary-900": $primary-900,
211
+ "primary-950": $primary-950,
212
+ // Secondary shades
213
+ "secondary-25": $secondary-25,
214
+ "secondary-50": $secondary-50,
215
+ "secondary-100": $secondary-100,
216
+ "secondary-200": $secondary-200,
217
+ "secondary-300": $secondary-300,
218
+ "secondary-400": $secondary-400,
219
+ "secondary-500": $secondary-500,
220
+ "secondary-600": $secondary-600,
221
+ "secondary-700": $secondary-700,
222
+ "secondary-800": $secondary-800,
223
+ "secondary-900": $secondary-900,
224
+ "secondary-950": $secondary-950,
225
+ // Success shades
226
+ "success-25": $success-25,
227
+ "success-50": $success-50,
228
+ "success-100": $success-100,
229
+ "success-200": $success-200,
230
+ "success-300": $success-300,
231
+ "success-400": $success-400,
232
+ "success-500": $success-500,
233
+ "success-600": $success-600,
234
+ "success-700": $success-700,
235
+ "success-800": $success-800,
236
+ "success-900": $success-900,
237
+ "success-950": $success-950,
238
+ // Info shades
239
+ "info-25": $info-25,
240
+ "info-50": $info-50,
241
+ "info-100": $info-100,
242
+ "info-200": $info-200,
243
+ "info-300": $info-300,
244
+ "info-400": $info-400,
245
+ "info-500": $info-500,
246
+ "info-600": $info-600,
247
+ "info-700": $info-700,
248
+ "info-800": $info-800,
249
+ "info-900": $info-900,
250
+ "info-950": $info-950,
251
+ // Warning shades
252
+ "warning-25": $warning-25,
253
+ "warning-50": $warning-50,
254
+ "warning-100": $warning-100,
255
+ "warning-200": $warning-200,
256
+ "warning-300": $warning-300,
257
+ "warning-400": $warning-400,
258
+ "warning-500": $warning-500,
259
+ "warning-600": $warning-600,
260
+ "warning-700": $warning-700,
261
+ "warning-800": $warning-800,
262
+ "warning-900": $warning-900,
263
+ "warning-950": $warning-950,
264
+ // Danger/Error shades
265
+ "danger-25": $danger-25,
266
+ "danger-50": $danger-50,
267
+ "danger-100": $danger-100,
268
+ "danger-200": $danger-200,
269
+ "danger-300": $danger-300,
270
+ "danger-400": $danger-400,
271
+ "danger-500": $danger-500,
272
+ "danger-600": $danger-600,
273
+ "danger-700": $danger-700,
274
+ "danger-800": $danger-800,
275
+ "danger-900": $danger-900,
276
+ "danger-950": $danger-950,
277
+ // Lavender shades
278
+ "lavender-25": $lavender-25,
279
+ "lavender-50": $lavender-50,
280
+ "lavender-100": $lavender-100,
281
+ "lavender-200": $lavender-200,
282
+ "lavender-300": $lavender-300,
283
+ "lavender-400": $lavender-400,
284
+ "lavender-500": $lavender-500,
285
+ "lavender-600": $lavender-600,
286
+ "lavender-700": $lavender-700,
287
+ "lavender-800": $lavender-800,
288
+ "lavender-900": $lavender-900,
289
+ "lavender-950": $lavender-950,
290
+ // Neutral shades
291
+ "neutral-25": $neutral-25,
292
+ "neutral-50": $neutral-50,
293
+ "neutral-100": $neutral-100,
294
+ "neutral-200": $neutral-200,
295
+ "neutral-300": $neutral-300,
296
+ "neutral-400": $neutral-400,
297
+ "neutral-500": $neutral-500,
298
+ "neutral-600": $neutral-600,
299
+ "neutral-700": $neutral-700,
300
+ "neutral-800": $neutral-800,
301
+ "neutral-900": $neutral-900,
302
+ "neutral-950": $neutral-950
303
+ );