@idds/styles 1.0.26

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 (81) hide show
  1. package/README.md +147 -0
  2. package/package.json +55 -0
  3. package/src/colors/brands/bgn.css +29 -0
  4. package/src/colors/brands/bkn.css +32 -0
  5. package/src/colors/brands/inagov.css +39 -0
  6. package/src/colors/brands/inaku.css +28 -0
  7. package/src/colors/brands/inapas.css +28 -0
  8. package/src/colors/brands/lan.css +38 -0
  9. package/src/colors/brands/pan-rb.css +30 -0
  10. package/src/colors/index.css +11 -0
  11. package/src/colors/primitives/index.css +150 -0
  12. package/src/colors/product/index.css +205 -0
  13. package/src/colors/utilities/index.css +77 -0
  14. package/src/components/accordion-card.css +99 -0
  15. package/src/components/accordion.css +120 -0
  16. package/src/components/action-dropdown.css +140 -0
  17. package/src/components/alert.css +180 -0
  18. package/src/components/avatar.css +182 -0
  19. package/src/components/badge.css +244 -0
  20. package/src/components/bottom-sheet.css +61 -0
  21. package/src/components/breadcrumb.css +94 -0
  22. package/src/components/button-group.css +130 -0
  23. package/src/components/button.css +233 -0
  24. package/src/components/card.css +488 -0
  25. package/src/components/carousel.css +100 -0
  26. package/src/components/chart.css +81 -0
  27. package/src/components/checkbox.css +211 -0
  28. package/src/components/chip.css +228 -0
  29. package/src/components/collapse.css +84 -0
  30. package/src/components/confirmation.css +131 -0
  31. package/src/components/date-picker.css +1063 -0
  32. package/src/components/divider.css +174 -0
  33. package/src/components/drawer.css +757 -0
  34. package/src/components/dropdown.css +369 -0
  35. package/src/components/field-input-table.css +347 -0
  36. package/src/components/file-upload.css +357 -0
  37. package/src/components/input-search.css +428 -0
  38. package/src/components/linear-progress-indicator.css +34 -0
  39. package/src/components/modal.css +497 -0
  40. package/src/components/month-picker.css +325 -0
  41. package/src/components/multiple-choice-grid.css +383 -0
  42. package/src/components/pagination.css +415 -0
  43. package/src/components/password-input.css +472 -0
  44. package/src/components/phone-input.css +412 -0
  45. package/src/components/progress-bar.css +447 -0
  46. package/src/components/radio-input.css +263 -0
  47. package/src/components/reset.css +431 -0
  48. package/src/components/select-dropdown.css +663 -0
  49. package/src/components/select-option.css +217 -0
  50. package/src/components/skeleton.css +488 -0
  51. package/src/components/spinner.css +450 -0
  52. package/src/components/stepper.css +209 -0
  53. package/src/components/tab-horizontal.css +278 -0
  54. package/src/components/tab-vertical.css +261 -0
  55. package/src/components/table-progress-bar.css +48 -0
  56. package/src/components/table.css +538 -0
  57. package/src/components/text-area.css +216 -0
  58. package/src/components/text-field.css +275 -0
  59. package/src/components/theme-toggle.css +259 -0
  60. package/src/components/time-picker.css +436 -0
  61. package/src/components/toast.css +245 -0
  62. package/src/components/toggle.css +223 -0
  63. package/src/components/tooltip.css +452 -0
  64. package/src/components/year-picker.css +423 -0
  65. package/src/index.css +3 -0
  66. package/src/tailwind/css/bgn.css +43 -0
  67. package/src/tailwind/css/bkn.css +37 -0
  68. package/src/tailwind/css/idds.css +231 -0
  69. package/src/tailwind/css/inagov.css +33 -0
  70. package/src/tailwind/css/inaku.css +33 -0
  71. package/src/tailwind/css/inapas.css +33 -0
  72. package/src/tailwind/css/lan.css +43 -0
  73. package/src/tailwind/css/pan-rb.css +35 -0
  74. package/src/tailwind/ts/bgn.ts +20 -0
  75. package/src/tailwind/ts/bkn.ts +38 -0
  76. package/src/tailwind/ts/idds.ts +240 -0
  77. package/src/tailwind/ts/inagov.ts +35 -0
  78. package/src/tailwind/ts/inaku.ts +35 -0
  79. package/src/tailwind/ts/inapas.ts +35 -0
  80. package/src/tailwind/ts/lan.ts +45 -0
  81. package/src/tailwind/ts/panrb.ts +37 -0
package/README.md ADDED
@@ -0,0 +1,147 @@
1
+ # @idds/styles
2
+
3
+ Shared CSS styles and colors for INA Digital Design System.
4
+
5
+ This package contains all the CSS files used by both `@idds/react` and `@idds/vue` packages.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @idds/styles
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ### Import all styles
16
+
17
+ ```css
18
+ @import '@idds/styles';
19
+ ```
20
+
21
+ This will import:
22
+
23
+ - All color tokens and brand themes
24
+ - Reset CSS
25
+
26
+ ### Import colors only
27
+
28
+ ```css
29
+ @import '@idds/styles/colors';
30
+ ```
31
+
32
+ ### Import specific component styles
33
+
34
+ ```css
35
+ @import '@idds/styles/components/button.css';
36
+ @import '@idds/styles/components/accordion.css';
37
+ @import '@idds/styles/components/modal.css';
38
+ ```
39
+
40
+ ### Import specific brand colors
41
+
42
+ ```css
43
+ @import '@idds/styles/colors/brands/inagov.css';
44
+ @import '@idds/styles/colors/brands/inaku.css';
45
+ ```
46
+
47
+ ## Structure
48
+
49
+ ```
50
+ @idds/styles/
51
+ ├── colors/
52
+ │ ├── brands/ # Brand-specific color themes
53
+ │ ├── primitives/ # Base color tokens
54
+ │ ├── product/ # Product color tokens
55
+ │ └── utilities/ # Utility color tokens
56
+ └── components/
57
+ └── [component].css # Component-specific styles
58
+ ```
59
+
60
+ ## Available Components
61
+
62
+ This package includes CSS for all INA Digital Design System components:
63
+
64
+ - Accordion, Alert, Avatar, Badge, Button, Card, Checkbox, Chip
65
+ - DatePicker, Dropdown, FileUpload, Modal, Pagination, Stepper
66
+ - Table, TextField, TextArea, Toast, Tooltip, and more...
67
+
68
+ ## Tailwind CSS Integration
69
+
70
+ This package provides Tailwind CSS utilities for both Tailwind v3 and v4.
71
+
72
+ ### Tailwind CSS v3
73
+
74
+ For Tailwind v3, use the TypeScript token files:
75
+
76
+ ```js
77
+ // tailwind.config.js
78
+ import inaColorTokens from '@idds/styles/tailwind/ts/ina-color-token';
79
+ import inagovTokens from '@idds/styles/tailwind/ts/inagov'; // Optional: brand theme
80
+
81
+ export default {
82
+ theme: {
83
+ extend: {
84
+ colors: {
85
+ ...inaColorTokens,
86
+ ...inagovTokens, // Optional: extend with brand colors
87
+ },
88
+ },
89
+ },
90
+ };
91
+ ```
92
+
93
+ Then you can use classes like:
94
+
95
+ - `text-neutral-500`
96
+ - `bg-blue-500`
97
+ - `text-guide-500` (which uses `--ina-blue-500` = `#0968f6`)
98
+
99
+ **Available brand tokens:**
100
+
101
+ - `@idds/styles/tailwind/ts/inagov`
102
+ - `@idds/styles/tailwind/ts/inaku`
103
+ - `@idds/styles/tailwind/ts/inapas`
104
+ - `@idds/styles/tailwind/ts/bgn`
105
+ - `@idds/styles/tailwind/ts/bkn`
106
+ - `@idds/styles/tailwind/ts/lan`
107
+ - `@idds/styles/tailwind/ts/panrb`
108
+
109
+ ### Tailwind CSS v4
110
+
111
+ For Tailwind v4, use the CSS files with `@theme` syntax:
112
+
113
+ ```css
114
+ /* your main CSS file */
115
+ @import '@idds/styles/tailwind/css/inadigital-color-token.css';
116
+ @import '@idds/styles/tailwind/css/inagov-color-token.css'; /* Optional: brand theme */
117
+ ```
118
+
119
+ Then you can use classes like:
120
+
121
+ - `text-neutral-500`
122
+ - `bg-blue-500`
123
+ - `text-guide-500` (which uses `--ina-blue-500` = `#0968f6`)
124
+
125
+ **Available brand tokens:**
126
+
127
+ - `@idds/styles/tailwind/css/inagov-color-token.css`
128
+ - `@idds/styles/tailwind/css/inaku-color-token.css`
129
+ - `@idds/styles/tailwind/css/inapas-color-token.css`
130
+ - `@idds/styles/tailwind/css/bgn-color-token.css`
131
+ - `@idds/styles/tailwind/css/bkn-color-token.css`
132
+ - `@idds/styles/tailwind/css/lan-color-token.css`
133
+ - `@idds/styles/tailwind/css/pan-rb-color-token.css`
134
+
135
+ ### Example Usage
136
+
137
+ ```html
138
+ <!-- Using Tailwind classes with INA Digital colors -->
139
+ <div class="bg-blue-500 text-white p-4">
140
+ <p class="text-guide-500">This text uses guide-500 color (#0968f6)</p>
141
+ <p class="text-neutral-500">This text uses neutral-500 color</p>
142
+ </div>
143
+ ```
144
+
145
+ ## License
146
+
147
+ MIT
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@idds/styles",
3
+ "version": "1.0.26",
4
+ "description": "Shared CSS styles and colors for INA Digital Design System",
5
+ "type": "module",
6
+ "main": "./src/index.css",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "exports": {
11
+ ".": "./src/index.css",
12
+ "./colors": "./src/colors/index.css",
13
+ "./colors/*": "./src/colors/*.css",
14
+ "./components/*": "./src/components/*.css",
15
+ "./tailwind/ts/*": {
16
+ "import": "./src/tailwind/ts/*.ts",
17
+ "require": "./src/tailwind/ts/*.ts",
18
+ "types": "./src/tailwind/ts/*.ts"
19
+ },
20
+ "./tailwind/css/idds.css": "./src/tailwind/css/idds.css",
21
+ "./tailwind/css/pan-rb.css": "./src/tailwind/css/pan-rb.css",
22
+ "./tailwind/css/inagov.css": "./src/tailwind/css/inagov.css",
23
+ "./tailwind/css/inaku.css": "./src/tailwind/css/inaku.css",
24
+ "./tailwind/css/inapas.css": "./src/tailwind/css/inapas.css",
25
+ "./tailwind/css/bgn.css": "./src/tailwind/css/bgn.css",
26
+ "./tailwind/css/bkn.css": "./src/tailwind/css/bkn.css",
27
+ "./tailwind/css/lan.css": "./src/tailwind/css/lan.css"
28
+ },
29
+ "scripts": {
30
+ "prepublishOnly": "echo 'Preparing package for publish...'"
31
+ },
32
+ "files": [
33
+ "src",
34
+ "README.md"
35
+ ],
36
+ "keywords": [
37
+ "css",
38
+ "styles",
39
+ "design-system",
40
+ "ina-digital",
41
+ "ui",
42
+ "components"
43
+ ],
44
+ "author": "INA Digital",
45
+ "license": "MIT",
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "git+https://github.com/inadigital/designsystem-advanced.git",
49
+ "directory": "inadigital-ui/packages/styles"
50
+ },
51
+ "bugs": {
52
+ "url": "https://github.com/inadigital/designsystem-advanced/issues"
53
+ },
54
+ "homepage": "https://github.com/inadigital/designsystem-advanced#readme"
55
+ }
@@ -0,0 +1,29 @@
1
+ /* BGN Theme - Banking & Financial Services */
2
+ [data-brand='bgn'] {
3
+ /* Primary Colors - Navy Blue theme */
4
+ --ina-primary-50: #eff6ff;
5
+ --ina-primary-100: #dbeafe;
6
+ --ina-primary-200: #bfdbfe;
7
+ --ina-primary-300: #93c5fd;
8
+ --ina-primary-400: #60a5fa;
9
+ --ina-primary-500: #3b82f6;
10
+ --ina-primary-600: #2563eb;
11
+ --ina-primary-700: #1d4ed8;
12
+ --ina-primary-800: #1e40af;
13
+ --ina-primary-900: #1e3a8a;
14
+
15
+ /* Brand-specific colors */
16
+ --ina-bgn-brand-primary: #005494 !important;
17
+ --ina-bgn-stroke-primary: #ededed !important;
18
+ --ina-background-tertiary: #f5f5f5 !important;
19
+
20
+ /* Sentiment colors */
21
+ --ina-sentiment-info-400: #528aff !important;
22
+ --ina-sentiment-info-500: #2871ff !important;
23
+ --ina-sentiment-positive-500: #12b76a !important;
24
+ --ina-sentiment-warning-500: #f79009 !important;
25
+
26
+ /* Accent colors */
27
+ --ina-accent-coral-orange: #ff7b5a !important;
28
+ --ina-accent-yellow: #ffcb00 !important;
29
+ }
@@ -0,0 +1,32 @@
1
+ /* BKN Theme - Badan Kepegawaian Negara */
2
+ [data-brand='bkn'] {
3
+ /* Primary Colors - Pink/Red theme */
4
+ --ina-primary-25: #fdf2f7;
5
+ --ina-primary-50: #fde6f1;
6
+ --ina-primary-100: #fdcde3;
7
+ --ina-primary-200: #fca5cb;
8
+ --ina-primary-300: #f96da7;
9
+ --ina-primary-400: #f24286;
10
+ --ina-primary-500: #de1d5e;
11
+ --ina-primary-600: #c41249;
12
+ --ina-primary-700: #a2123c;
13
+ --ina-primary-800: #871436;
14
+ --ina-primary-900: #53041a;
15
+
16
+ /* Secondary Colors - Blue theme */
17
+ --ina-secondary-25: #f2f9fd;
18
+ --ina-secondary-50: #e3f0fb;
19
+ --ina-secondary-100: #c1e3f6;
20
+ --ina-secondary-200: #8accef;
21
+ --ina-secondary-300: #4cb2e4;
22
+ --ina-secondary-400: #269dd8;
23
+ --ina-secondary-500: #177ab2;
24
+ --ina-secondary-600: #146190;
25
+ --ina-secondary-700: #145378;
26
+ --ina-secondary-800: #164564;
27
+ --ina-secondary-900: #0f2d42;
28
+
29
+ /* Interactive Colors */
30
+ --ina-bkn-brand-hover: #c41249 !important;
31
+ --ina-bkn-neutral-hover: #fafafa !important;
32
+ }
@@ -0,0 +1,39 @@
1
+ /* InaGov Theme - Government Services */
2
+ [data-brand='inagov'] {
3
+ /* Primary Colors - Government Blue theme (Figma InaGov) */
4
+ --ina-primary-25: #f6f9ff;
5
+ --ina-primary-50: #eff5fd;
6
+ --ina-primary-100: #c0d7f9;
7
+ --ina-primary-200: #a1c4f5;
8
+ --ina-primary-300: #629cef;
9
+ --ina-primary-400: #196bcd;
10
+ --ina-primary-500: #0956c3;
11
+ --ina-primary-600: #0a489f;
12
+ --ina-primary-700: #083575;
13
+ --ina-primary-800: #022a5b;
14
+ --ina-primary-900: #041225;
15
+
16
+ /* Secondary Colors - Orange/Peach theme */
17
+ --ina-secondary-25: #ffffff;
18
+ --ina-secondary-50: #ffffff;
19
+ --ina-secondary-100: #ffffff;
20
+ --ina-secondary-200: #fff5ee;
21
+ --ina-secondary-300: #ffe8cc;
22
+ --ina-secondary-400: #ffd2a6;
23
+ --ina-secondary-500: #edb98a;
24
+ --ina-secondary-600: #d39663;
25
+ --ina-secondary-700: #cc1515;
26
+
27
+ /* Accent Colors - Orange theme (Legacy - kept for backward compatibility) */
28
+ --ina-accent-100: #ffffff !important;
29
+ --ina-accent-200: #fff5ee !important;
30
+ --ina-accent-300: #ffe8cc !important;
31
+ --ina-accent-400: #ffd2a6 !important;
32
+ --ina-accent-500: #edb98a !important;
33
+ --ina-accent-600: #d39663 !important;
34
+ --ina-accent-700: #cc1515 !important;
35
+
36
+ /* Interactive Colors */
37
+ --ina-brand-hover: #588cd7 !important;
38
+ --ina-neutral-hover: #edeff5 !important;
39
+ }
@@ -0,0 +1,28 @@
1
+ /* InaKu Theme - Citizen Services */
2
+ [data-brand='inaku'] {
3
+ /* Primary Colors - Citizen Dark Blue theme (Figma InaKu) */
4
+ --ina-primary-25: #e8f1fc;
5
+ --ina-primary-50: #d9e9f9;
6
+ --ina-primary-100: #abd1ff;
7
+ --ina-primary-200: #629cef;
8
+ --ina-primary-300: #3a78c1;
9
+ --ina-primary-400: #194472;
10
+ --ina-primary-500: #06264d;
11
+ --ina-primary-600: #041d35;
12
+ --ina-primary-700: #020f1f;
13
+ --ina-primary-800: #020b17;
14
+ --ina-primary-900: #01080f;
15
+
16
+ /* Accent Colors - Gray Blue theme */
17
+ --ina-accent-100: #ffffff !important;
18
+ --ina-accent-200: #6a7d94 !important;
19
+ --ina-accent-300: #06264d !important;
20
+ --ina-accent-400: #051c3a !important;
21
+ --ina-accent-500: #031327 !important;
22
+ --ina-accent-600: #000000 !important;
23
+ --ina-accent-700: #6a7d94 !important;
24
+
25
+ /* Interactive Colors */
26
+ --ina-inaku-brand-hover: #b81313 !important;
27
+ --ina-inaku-neutral-hover: #fafafa !important;
28
+ }
@@ -0,0 +1,28 @@
1
+ /* InaPas Theme - Passport & Immigration Services */
2
+ [data-brand='inapas'] {
3
+ /* Primary Colors - Red/Coral theme (Figma InaPas) */
4
+ --ina-primary-25: #fef2f2;
5
+ --ina-primary-50: #f9dcdc;
6
+ --ina-primary-100: #f9cdc7;
7
+ --ina-primary-200: #ffa194;
8
+ --ina-primary-300: #ff5f42;
9
+ --ina-primary-400: #e8422d;
10
+ --ina-primary-500: #cc1515;
11
+ --ina-primary-600: #a00000;
12
+ --ina-primary-700: #680000;
13
+ --ina-primary-800: #290404;
14
+ --ina-primary-900: #140202;
15
+
16
+ /* Accent Colors - Green theme */
17
+ --ina-accent-100: #f6fef9 !important;
18
+ --ina-accent-200: #ecfef3 !important;
19
+ --ina-accent-300: #d1fadf !important;
20
+ --ina-accent-400: #a6f4c5 !important;
21
+ --ina-accent-500: #12b76a !important;
22
+ --ina-accent-600: #039855 !important;
23
+ --ina-accent-700: #027a48 !important;
24
+
25
+ /* Interactive Colors */
26
+ --ina-inapas-brand-hover: #155eef !important;
27
+ --ina-inapas-neutral-hover: #f9fafb !important;
28
+ }
@@ -0,0 +1,38 @@
1
+ /* LAN Theme - Local Area Network */
2
+ [data-brand='lan'] {
3
+ /* Primary Colors - Blue theme */
4
+ --ina-primary-25: #f3f6fc;
5
+ --ina-primary-50: #e5edf9;
6
+ --ina-primary-100: #c6daf1;
7
+ --ina-primary-200: #94bde5;
8
+ --ina-primary-300: #5b9bd5;
9
+ --ina-primary-400: #3781c7;
10
+ --ina-primary-500: #2663a3;
11
+ --ina-primary-600: #1f4f85;
12
+ --ina-primary-700: #1e446e;
13
+ --ina-primary-800: #1e3a5c;
14
+ --ina-primary-900: #14263d;
15
+
16
+ /* Secondary Colors - Yellow/Orange theme */
17
+ --ina-secondary-25: #fffdeb;
18
+ --ina-secondary-50: #fdf9c8;
19
+ --ina-secondary-100: #fbf38c;
20
+ --ina-secondary-200: #f9e650;
21
+ --ina-secondary-300: #f7d628;
22
+ --ina-secondary-400: #f2bd1d;
23
+ --ina-secondary-500: #d69009;
24
+ --ina-secondary-600: #b1670c;
25
+ --ina-secondary-700: #905110;
26
+ --ina-secondary-800: #764111;
27
+ --ina-secondary-900: #442204;
28
+
29
+ /* Accent Colors */
30
+ --ina-accent-red: #a40f0a;
31
+ --ina-accent-green: #1cbd19;
32
+ --ina-accent-blue: #0a35c0;
33
+ --ina-accent-orange: #f08519;
34
+
35
+ /* Interactive Colors */
36
+ --ina-lan-brand-hover: #1f4f85 !important;
37
+ --ina-lan-neutral-hover: #fafafa !important;
38
+ }
@@ -0,0 +1,30 @@
1
+ /* PAN-RB Theme*/
2
+ [data-brand='pan-rb'] {
3
+ /* Primary Colors - Red/Maroon theme */
4
+ --ina-primary-25: #fdf3f3;
5
+ --ina-primary-50: #fce4e4;
6
+ --ina-primary-100: #facecf;
7
+ --ina-primary-200: #f5acad;
8
+ --ina-primary-300: #ed7c7e;
9
+ --ina-primary-400: #e15254;
10
+ --ina-primary-500: #cd3537;
11
+ --ina-primary-600: #b42b2d;
12
+ --ina-primary-700: #8f2527;
13
+ --ina-primary-800: #772526;
14
+ --ina-primary-900: #400f10;
15
+
16
+ /* Secondary Colors - Grey/Purple-brown theme */
17
+ --ina-secondary-25: #f8f7f8;
18
+ --ina-secondary-50: #f0eeee;
19
+ --ina-secondary-100: #ded9da;
20
+ --ina-secondary-200: #c1b8bb;
21
+ --ina-secondary-300: #9f9196;
22
+ --ina-secondary-400: #847379;
23
+ --ina-secondary-500: #6c5d62;
24
+ --ina-secondary-600: #584c50;
25
+ --ina-secondary-700: #4b4144;
26
+ --ina-secondary-800: #41393b;
27
+ --ina-secondary-900: #231f20;
28
+
29
+ --ina-accent-yellow: #f2c548;
30
+ }
@@ -0,0 +1,11 @@
1
+ @import './primitives/index.css';
2
+ @import './utilities/index.css';
3
+ /* Import brand-specific theme files - MUST be at the top */
4
+ @import './brands/inapas.css';
5
+ @import './brands/inagov.css';
6
+ @import './brands/inaku.css';
7
+ @import './brands/bgn.css';
8
+ @import './brands/bkn.css';
9
+ @import './brands/lan.css';
10
+ @import './brands/pan-rb.css';
11
+ @import './product/index.css';
@@ -0,0 +1,150 @@
1
+ :root {
2
+ /* Neutral Colors */
3
+ --ina-neutral-25: #ffffff;
4
+ --ina-neutral-50: #f8f8f7;
5
+ --ina-neutral-100: #f5f5f5;
6
+ --ina-neutral-200: #e5e5e5;
7
+ --ina-neutral-300: #d4d4d4;
8
+ --ina-neutral-400: #a3a3a3;
9
+ --ina-neutral-500: #737373;
10
+ --ina-neutral-600: #525252;
11
+ --ina-neutral-700: #404040;
12
+ --ina-neutral-800: #1f1f1f;
13
+ --ina-neutral-900: #141414;
14
+ --ina-neutral-1000: #050505;
15
+
16
+ /* Blue Colors */
17
+ --ina-blue-50: #fafcff;
18
+ --ina-blue-100: #ebf3ff;
19
+ --ina-blue-200: #d2e4fe;
20
+ --ina-blue-300: #84b4fb;
21
+ --ina-blue-400: #4d93fc;
22
+ --ina-blue-500: #0968f6;
23
+ --ina-blue-600: #004ab8;
24
+ --ina-blue-700: #002a69;
25
+ --ina-blue-800: #0a2142;
26
+ --ina-blue-900: #031530;
27
+
28
+ /* Cyan Colors */
29
+ --ina-cyan-50: #fafeff;
30
+ --ina-cyan-100: #ebfaff;
31
+ --ina-cyan-200: #d2f3fe;
32
+ --ina-cyan-300: #83defc;
33
+ --ina-cyan-400: #51d0fb;
34
+ --ina-cyan-500: #09bbf6;
35
+ --ina-cyan-600: #008bb9;
36
+ --ina-cyan-700: #00506b;
37
+ --ina-cyan-800: #0a3442;
38
+ --ina-cyan-900: #032530;
39
+
40
+ /* Green Colors */
41
+ --ina-green-50: #fafffb;
42
+ --ina-green-100: #ebffef;
43
+ --ina-green-200: #d2fedb;
44
+ --ina-green-300: #83fc9b;
45
+ --ina-green-400: #51fb73;
46
+ --ina-green-500: #09f638;
47
+ --ina-green-600: #00b925;
48
+ --ina-green-700: #006b15;
49
+ --ina-green-800: #0a4215;
50
+ --ina-green-900: #03300c;
51
+
52
+ /* Lime Colors */
53
+ --ina-lime-50: #fdfffa;
54
+ --ina-lime-100: #f7ffeb;
55
+ --ina-lime-200: #ecfed2;
56
+ --ina-lime-300: #ccfc83;
57
+ --ina-lime-400: #b7fb51;
58
+ --ina-lime-500: #97f609;
59
+ --ina-lime-600: #6fb900;
60
+ --ina-lime-700: #406b00;
61
+ --ina-lime-800: #2c420a;
62
+ --ina-lime-900: #1e3003;
63
+
64
+ /* Yellow Colors */
65
+ --ina-yellow-50: #fffefa;
66
+ --ina-yellow-100: #fffdeb;
67
+ --ina-yellow-200: #fef9d2;
68
+ --ina-yellow-300: #fcee83;
69
+ --ina-yellow-400: #fbe751;
70
+ --ina-yellow-500: #f6da09;
71
+ --ina-yellow-600: #b9a300;
72
+ --ina-yellow-700: #6b5f00;
73
+ --ina-yellow-800: #423c0a;
74
+ --ina-yellow-900: #302b03;
75
+
76
+ /* Orange Colors */
77
+ --ina-orange-50: #fffdfa;
78
+ --ina-orange-100: #fff3eb;
79
+ --ina-orange-200: #fee4d2;
80
+ --ina-orange-300: #fcb583;
81
+ --ina-orange-400: #fc974f;
82
+ --ina-orange-500: #f66a09;
83
+ --ina-orange-600: #b84d00;
84
+ --ina-orange-700: #6b2d00;
85
+ --ina-orange-800: #42210a;
86
+ --ina-orange-900: #301603;
87
+
88
+ /* Red Colors */
89
+ --ina-red-50: #fffafa;
90
+ --ina-red-100: #ffebeb;
91
+ --ina-red-200: #fed2d2;
92
+ --ina-red-300: #fb8383;
93
+ --ina-red-400: #fc4f4f;
94
+ --ina-red-500: #f60909;
95
+ --ina-red-600: #b80000;
96
+ --ina-red-700: #6b0000;
97
+ --ina-red-800: #420a0a;
98
+ --ina-red-900: #300303;
99
+
100
+ /* Pink Colors */
101
+ --ina-pink-50: #fffafd;
102
+ --ina-pink-100: #ffebf8;
103
+ --ina-pink-200: #fed2ef;
104
+ --ina-pink-300: #fc83d3;
105
+ --ina-pink-400: #fb51c2;
106
+ --ina-pink-500: #f609a7;
107
+ --ina-pink-600: #b9007b;
108
+ --ina-pink-700: #6b0047;
109
+ --ina-pink-800: #420a2f;
110
+ --ina-pink-900: #300321;
111
+
112
+ /* Magenta Colors */
113
+ --ina-magenta-50: #fefaff;
114
+ --ina-magenta-100: #fbebff;
115
+ --ina-magenta-200: #f5d2fe;
116
+ --ina-magenta-300: #e483fc;
117
+ --ina-magenta-400: #d951fb;
118
+ --ina-magenta-500: #c709f6;
119
+ --ina-magenta-600: #9400b9;
120
+ --ina-magenta-700: #56006b;
121
+ --ina-magenta-800: #370a42;
122
+ --ina-magenta-900: #270330;
123
+
124
+ /* Purple Colors */
125
+ --ina-purple-50: #fdfaff;
126
+ --ina-purple-100: #f7ebff;
127
+ --ina-purple-200: #ecd2fe;
128
+ --ina-purple-300: #cc83fc;
129
+ --ina-purple-400: #b751fb;
130
+ --ina-purple-500: #9709f6;
131
+ --ina-purple-600: #6f00b9;
132
+ --ina-purple-700: #40006b;
133
+ --ina-purple-800: #2c0a42;
134
+ --ina-purple-900: #1e0330;
135
+
136
+ /* Indigo Colors */
137
+ --ina-indigo-50: #fafaff;
138
+ --ina-indigo-100: #ebeaff;
139
+ --ina-indigo-200: #d2d3fe;
140
+ --ina-indigo-300: #8387fc;
141
+ --ina-indigo-400: #5157fb;
142
+ --ina-indigo-500: #0911f6;
143
+ --ina-indigo-600: #0006b9;
144
+ --ina-indigo-700: #00046b;
145
+ --ina-indigo-800: #0a0c42;
146
+ --ina-indigo-900: #030630;
147
+
148
+ /* overlay */
149
+ --ina-overlay: #1f1f1f7a;
150
+ }