@daikin-oss/dds-tokens 0.0.0 → 0.2.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 (65) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/README.md +81 -17
  3. package/build/css/aaf/Dark/buttons.css +22 -0
  4. package/build/css/aaf/Dark/variables.css +202 -0
  5. package/build/css/aaf/Light/buttons.css +22 -0
  6. package/build/css/aaf/Light/variables.css +202 -0
  7. package/build/css/daikin/Dark/buttons.css +22 -0
  8. package/build/css/daikin/Dark/variables.css +217 -0
  9. package/build/css/daikin/Light/buttons.css +22 -0
  10. package/build/css/daikin/Light/variables.css +258 -0
  11. package/build/js/aaf/Dark/variables.cjs +202 -0
  12. package/build/js/aaf/Dark/variables.d.cts +220 -0
  13. package/build/js/aaf/Dark/variables.d.ts +220 -0
  14. package/build/js/aaf/Dark/variables.js +200 -0
  15. package/build/js/aaf/Light/variables.cjs +202 -0
  16. package/build/js/aaf/Light/variables.d.cts +220 -0
  17. package/build/js/aaf/Light/variables.d.ts +220 -0
  18. package/build/js/aaf/Light/variables.js +200 -0
  19. package/build/js/daikin/Dark/variables.cjs +217 -0
  20. package/build/js/daikin/Dark/variables.d.cts +236 -0
  21. package/build/js/daikin/Dark/variables.d.ts +236 -0
  22. package/build/js/daikin/Dark/variables.js +215 -0
  23. package/build/js/daikin/Light/variables.cjs +258 -0
  24. package/build/js/daikin/Light/variables.d.cts +277 -0
  25. package/build/js/daikin/Light/variables.d.ts +277 -0
  26. package/build/js/daikin/Light/variables.js +256 -0
  27. package/build/json/aaf/Dark/tokens.json +786 -0
  28. package/build/json/aaf/Light/tokens.json +786 -0
  29. package/build/json/daikin/Dark/tokens.json +846 -0
  30. package/build/json/daikin/Light/tokens.json +1010 -0
  31. package/build/scss/_mixins.scss +4 -0
  32. package/build/scss/aaf/Dark/_mixins.scss +202 -0
  33. package/build/scss/aaf/Light/_mixins.scss +202 -0
  34. package/build/scss/daikin/Dark/_mixins.scss +217 -0
  35. package/build/scss/daikin/Light/_mixins.scss +258 -0
  36. package/package.json +64 -41
  37. package/themes/$metadata.json +15 -0
  38. package/themes/$themes.json +54 -0
  39. package/themes/aaf/dark/component.json +113 -0
  40. package/themes/aaf/dark/system.json +49 -0
  41. package/themes/aaf/light/component.json +113 -0
  42. package/themes/aaf/light/system.json +49 -0
  43. package/themes/component.json +184 -0
  44. package/themes/dkn/dark/component.json +207 -0
  45. package/themes/dkn/dark/system.json +77 -0
  46. package/themes/dkn/light/component.json +257 -0
  47. package/themes/dkn/light/system.json +237 -0
  48. package/themes/reference.json +681 -0
  49. package/themes/system.json +31 -0
  50. package/build/css/AAF/Dark/buttons.css +0 -29
  51. package/build/css/AAF/Dark/variables.css +0 -276
  52. package/build/css/AAF/Light/buttons.css +0 -29
  53. package/build/css/AAF/Light/variables.css +0 -276
  54. package/build/css/DKN/Dark/buttons.css +0 -29
  55. package/build/css/DKN/Dark/variables.css +0 -276
  56. package/build/css/DKN/Light/buttons.css +0 -29
  57. package/build/css/DKN/Light/variables.css +0 -276
  58. package/build/js/AAF/Dark/variables.d.ts +0 -305
  59. package/build/js/AAF/Dark/variables.js +0 -274
  60. package/build/js/AAF/Light/variables.d.ts +0 -305
  61. package/build/js/AAF/Light/variables.js +0 -274
  62. package/build/js/DKN/Dark/variables.d.ts +0 -306
  63. package/build/js/DKN/Dark/variables.js +0 -274
  64. package/build/js/DKN/Light/variables.d.ts +0 -306
  65. package/build/js/DKN/Light/variables.js +0 -274
package/CHANGELOG.md ADDED
@@ -0,0 +1,35 @@
1
+ # Changelog
2
+
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - **BREAKING CHANGE**: 604 token(s) removed (`body-2-xl`, `border-width-s`, `color-magenta-110`, `font-size-s`, `space-2` and more).
8
+ **BREAKING CHANGE**: 12 token(s) updated with incompatible changes (`font-family-base`, `font-family-base`, `font-weight-bold`).
9
+ 315 token(s) added.
10
+ 349 token(s) updated.
11
+
12
+ ### Patch Changes
13
+
14
+ - [#32](https://github.com/dsv-rp/dds-tokens/pull/32) [`bed4855`](https://github.com/dsv-rp/dds-tokens/commit/bed4855045a60df8c448c1024f991d69377e8c8f) Thanks [@yodas7](https://github.com/yodas7)! - Add JSON builds. (DDS-1513)
15
+ Add type definitions for CJS files.
16
+
17
+ - [#25](https://github.com/dsv-rp/dds-tokens/pull/25) [`b0f7c73`](https://github.com/dsv-rp/dds-tokens/commit/b0f7c73f4214e8480af395c21ae59ef8752d676f) Thanks [@yodas7](https://github.com/yodas7)! - Add SCSS build and JSON source to the package.
18
+ The `.js` extension is now optional when importing JS files.
19
+ The directory structure of the build results has been changed so that ESM and CJS are generated in the same directory.
20
+ There is no difference in the import method, except that the `.js` extension can now be omitted, as we define subpath exports.
21
+
22
+ All notable changes to this project will be documented in this file.
23
+
24
+ ## [0.1.0] - 2024-07-29
25
+
26
+ ### Added
27
+
28
+ - DDS-1227 Add CJS output to build
29
+ - Design Token Changes DDS-873/874/980
30
+
31
+ ## [0.0.0] - Initial Commit
32
+
33
+ ### Added
34
+
35
+ - Initial support for design tokens in both CSS and JS formats for Daikin and AAF brands.
package/README.md CHANGED
@@ -1,38 +1,102 @@
1
1
  # dds-tokens
2
2
 
3
- This package outputs:
3
+ This package contains:
4
4
 
5
- - Tokens as both `js` and `css` variables
6
- - Brand-specific tokens (i.e. `Daikin` and `AAF`)
7
- - `Light` and `Dark` mode
8
- - General styles as `variables.(css|js)`
9
- - Component-specific styles (i.e. `buttons.css`)
5
+ - Tokens as JS, CSS and SCSS variables
6
+ - Brand-specific tokens (e.g. `Daikin` and `AAF`)
7
+ - `Light` and `Dark` mode for each themes
8
+ - General styles as `variables.(css|js)`
9
+ - Component-specific styles (e.g. `buttons.css`)
10
+ - SCSS mixins
10
11
 
11
- For a complete list of outputs, please check out the file outputs in the `build` folder.
12
+ For the complete list of outputs, please check out the files output in the `build` folder.
12
13
 
13
14
  ## Usage
14
15
 
15
- ```
16
+ Install package:
17
+
18
+ ```sh
16
19
  npm install @daikin-oss/dds-tokens
17
20
  ```
18
21
 
19
- Import as js variables:
22
+ ### Import JS variables
20
23
 
21
- ```
22
- import {
23
- buttonColorBackgroundPrimaryActive
24
- } from '@daikin-oss/dds-tokens/js/daikin/Light/variables.js';
24
+ ```js
25
+ // ESM
26
+ import { buttonColorBackgroundPrimaryActive } from "@daikin-oss/dds-tokens/js/daikin/Light/variables.js";
27
+
28
+ // CommonJS
29
+ const {
30
+ buttonColorBackgroundPrimaryActive,
31
+ } = require("@daikin-oss/dds-tokens/js/daikin/Light/variables.js");
25
32
  ```
26
33
 
27
- Import the CSS:
34
+ ### Import CSS
28
35
 
36
+ ```js
37
+ import "@daikin-oss/dds-tokens/css/daikin/Dark/variables.css";
29
38
  ```
30
- import variables from '@daikin-oss/dds-tokens/css/daikin/Dark/variables.css'
39
+
40
+ or
41
+
42
+ ```css
43
+ @import url("@daikin-oss/dds-tokens/css/daikin/Dark/variables.css");
31
44
  ```
32
45
 
33
- The above includes all CSS classes - including core styles and components
46
+ The above includes all CSS classes - including core styles and components.
34
47
  There are also component-specific files if you don't need everything:
35
48
 
49
+ ```js
50
+ import buttonStyles from "@daikin-oss/dds-tokens/css/daikin/Dark/buttons.css";
51
+ ```
52
+
53
+ ### Import SCSS mixins
54
+
55
+ SCSS mixins require the SCSS compiler, but they provide flexibility in terms of where CSS variables are deployed.
56
+
57
+ Import all themes:
58
+
59
+ ```scss
60
+ @use "pkg:@daikin-oss/dds-tokens/scss/mixins" as dds-tokens;
61
+
62
+ :root {
63
+ @include dds-tokens.daikin-Light-variables;
64
+ }
65
+
66
+ :root[data-theme="aaf"] {
67
+ @include dds-tokens.aaf-Light-variables;
68
+ }
69
+
70
+ @media (prefers-color-scheme: dark) {
71
+ :root {
72
+ @include dds-tokens.daikin-Dark-variables;
73
+ }
74
+
75
+ :root[data-theme="aaf"] {
76
+ @include dds-tokens.aaf-Dark-variables;
77
+ }
78
+ }
36
79
  ```
37
- import buttonStyles from '@daikin-oss/dds-tokens/css/daikin/Dark/buttons.css'
80
+
81
+ Import individual themes:
82
+
83
+ ```scss
84
+ @use "pkg:@daikin-oss/dds-tokens/scss/daikin/Light/mixins" as daikin-Light;
85
+ @use "pkg:@daikin-oss/dds-tokens/scss/daikin/Dark/mixins" as daikin-Dark;
86
+
87
+ :root {
88
+ @include daikin-Light.variables;
89
+ }
90
+
91
+ :root.dark {
92
+ @include daikin-Dark.variables;
93
+ }
38
94
  ```
95
+
96
+ ## JSONs
97
+
98
+ There are JSON files under `json/` that lists the types and values of the tokens.
99
+ These are basically for internal use and are used to integrate design tokens with Tailwind CSS.
100
+ The structure of the JSON files is `{ "<token name>": ["<token value>", "<token type>"] }`.
101
+
102
+ In addition, the theme JSON files before building, which are located in `themes/`, are also published in the same path in the package.
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ :root {
6
+ --dds-button-color-background-primary-active: #db4f66; /* Color used for the default state of a secondary button */
7
+ --dds-button-color-background-primary-hover: #c8102e;
8
+ --dds-button-color-background-primary-press: #f8aeba;
9
+ --dds-button-color-background-primary-focus: #f5c0b8;
10
+ --dds-button-color-background-primary-disabled: #616161;
11
+ --dds-button-color-border-secondary-active: #db4f66;
12
+ --dds-button-color-border-secondary-hover: #c8102e;
13
+ --dds-button-color-border-secondary-press: #f8aeba;
14
+ --dds-button-color-border-secondary-focus: #f5c0b8;
15
+ --dds-button-color-border-secondary-disabled: #616161;
16
+ --dds-button-color-text-secondary-active: #db4f66;
17
+ --dds-button-color-text-secondary-hover: #c8102e;
18
+ --dds-button-color-text-secondary-press: #f8aeba;
19
+ --dds-button-color-text-secondary-focus: #f5c0b8;
20
+ --dds-button-color-text-secondary-disabled: #616161;
21
+ --dds-button-color-text-primary: #515151;
22
+ }
@@ -0,0 +1,202 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ :root {
6
+ --dds-color-blue-10: #ddf3fc;
7
+ --dds-color-blue-20: #bbe7f9;
8
+ --dds-color-blue-30: #98dbf7;
9
+ --dds-color-blue-40: #76cff4;
10
+ --dds-color-blue-50: #54c3f1;
11
+ --dds-color-blue-60: #30ade9;
12
+ --dds-color-blue-70: #0097e0;
13
+ --dds-color-blue-80: #0081c0;
14
+ --dds-color-blue-90: #00689a;
15
+ --dds-color-blue-100: #005077;
16
+ --dds-color-blue-110: #004160;
17
+ --dds-color-blue-120: #002b40;
18
+ --dds-color-green-10: #ccfef8;
19
+ --dds-color-green-20: #9bfaef;
20
+ --dds-color-green-30: #6cf5e4;
21
+ --dds-color-green-40: #3bf1dc;
22
+ --dds-color-green-50: #13e5cc;
23
+ --dds-color-green-60: #00c3ac;
24
+ --dds-color-green-70: #008f7e;
25
+ --dds-color-green-80: #007b6c;
26
+ --dds-color-green-90: #00665a;
27
+ --dds-color-green-100: #005248;
28
+ --dds-color-green-110: #003d36;
29
+ --dds-color-green-120: #002924;
30
+ --dds-color-yellow-10: #fff4d7;
31
+ --dds-color-yellow-20: #ffeaaf;
32
+ --dds-color-yellow-30: #ffd45f;
33
+ --dds-color-yellow-40: #ffc936;
34
+ --dds-color-yellow-50: #ffbf0e;
35
+ --dds-color-yellow-60: #efb000;
36
+ --dds-color-yellow-70: #b88700;
37
+ --dds-color-yellow-80: #9e7400;
38
+ --dds-color-yellow-90: #836000;
39
+ --dds-color-yellow-100: #694d00;
40
+ --dds-color-yellow-110: #4f3a00;
41
+ --dds-color-yellow-120: #352700;
42
+ --dds-color-orange-10: #feead9;
43
+ --dds-color-orange-20: #fcd4b3;
44
+ --dds-color-orange-30: #fbbf8e;
45
+ --dds-color-orange-40: #ff9c4b;
46
+ --dds-color-orange-50: #fd8b2e;
47
+ --dds-color-orange-60: #fa7a12;
48
+ --dds-color-orange-70: #e46b08;
49
+ --dds-color-orange-80: #b45100;
50
+ --dds-color-orange-90: #964400;
51
+ --dds-color-orange-100: #783600;
52
+ --dds-color-orange-110: #5a2900;
53
+ --dds-color-orange-120: #3c1b00;
54
+ --dds-color-red-10: #fdd9db;
55
+ --dds-color-red-20: #fbb3b7;
56
+ --dds-color-red-30: #f98d93;
57
+ --dds-color-red-40: #f7666f;
58
+ --dds-color-red-50: #f4404b;
59
+ --dds-color-red-60: #f21a27;
60
+ --dds-color-red-70: #d80c18;
61
+ --dds-color-red-80: #b90a15;
62
+ --dds-color-red-90: #9a0911;
63
+ --dds-color-red-100: #7b070e;
64
+ --dds-color-red-110: #5d050a;
65
+ --dds-color-red-120: #3e0307;
66
+ --dds-color-red-aaf-100: #fcecea;
67
+ --dds-color-red-aaf-200: #f5c0b8;
68
+ --dds-color-red-aaf-300: #f8aeba;
69
+ --dds-color-red-aaf-400: #db4f66;
70
+ --dds-color-red-aaf-500: #d2324c;
71
+ --dds-color-red-aaf-600: #c8102e;
72
+ --dds-color-gray-10: #f2f2f2;
73
+ --dds-color-gray-20: #ebebeb;
74
+ --dds-color-gray-30: #dcdcdc;
75
+ --dds-color-gray-40: #cecece;
76
+ --dds-color-gray-50: #bfbfbf;
77
+ --dds-color-gray-60: #a0a0a0;
78
+ --dds-color-gray-70: #828282;
79
+ --dds-color-gray-80: #616161;
80
+ --dds-color-gray-90: #515151;
81
+ --dds-color-gray-100: #414141;
82
+ --dds-color-gray-110: #313131;
83
+ --dds-color-gray-120: #212121;
84
+ --dds-color-black: #000000;
85
+ --dds-color-white: #ffffff;
86
+ --dds-color-black-shadow: rgba(0, 0, 0, 0.1);
87
+ --dds-color-white-shadow: rgba(255, 255, 255, 0.1);
88
+ --dds-color-blue-gray-10: #eef0f2;
89
+ --dds-color-blue-gray-20: #d8dde0;
90
+ --dds-color-blue-gray-30: #bbc1c7;
91
+ --dds-color-blue-gray-40: #a4acb4;
92
+ --dds-color-blue-gray-50: #8d98a1;
93
+ --dds-color-blue-gray-60: #76838e;
94
+ --dds-color-blue-gray-70: #636e78;
95
+ --dds-color-blue-gray-80: #505961;
96
+ --dds-color-blue-gray-90: #444b52;
97
+ --dds-color-blue-gray-100: #30353a;
98
+ --dds-color-blue-gray-110: #282c30;
99
+ --dds-color-blue-gray-120: #1b1e21;
100
+ --dds-color-dark-gray-105: #383838;
101
+ --dds-color-dark-gray-115: #282828;
102
+ --dds-color-dark-gray-125: #1a1a1a;
103
+ --dds-color-feedback-positive: #00c3ac; /* System status is positive */
104
+ --dds-color-feedback-warning: #ffbf0e; /* System status is warning */
105
+ --dds-color-feedback-negative: #f21a27; /* System status is warning */
106
+ --dds-color-feedback-alarm: #fa7a12; /* System status is warning */
107
+ --dds-color-feedback-information: #30ade9; /* System status is warning */
108
+ --dds-color-brand-primary: #db4f66; /* Primary brand blue */
109
+ --dds-color-brand-secondary: #c8102e;
110
+ --dds-color-text-brand-primary: #db4f66;
111
+ --dds-color-text-theme: #515151;
112
+ --dds-color-text-default: #ffffff;
113
+ --dds-color-text-default-sub: #f2f2f2;
114
+ --dds-color-background-theme: #000000;
115
+ --dds-color-background-component: #515151;
116
+ --dds-color-background-object: #ffffff;
117
+ --dds-border-radius-100: 4px;
118
+ --dds-border-radius-150: 6px;
119
+ --dds-border-radius-200: 8px;
120
+ --dds-border-radius-250: 10px;
121
+ --dds-border-radius-300: 12px;
122
+ --dds-border-radius-400: 16px;
123
+ --dds-border-radius-050: 2px;
124
+ --dds-border-width-100: 4px;
125
+ --dds-border-width-025: 1px;
126
+ --dds-border-width-050: 2px;
127
+ --dds-space-100: 4px;
128
+ --dds-space-200: 8px;
129
+ --dds-space-300: 12px;
130
+ --dds-space-400: 16px;
131
+ --dds-space-800: 32px;
132
+ --dds-space-050: 2px;
133
+ --dds-shadow-black: 0 -2px 19px 0 rgba(0, 0, 0, 0.1);
134
+ --dds-shadow-white: 0 -2px 19px 0 rgba(255, 255, 255, 0.1);
135
+ --dds-font-size-300: 12px;
136
+ --dds-font-size-350: 14px;
137
+ --dds-font-size-400: 16px;
138
+ --dds-line-height-tight: 130%;
139
+ --dds-line-height-normal: 150%;
140
+ --dds-font-weight-bold: Bold;
141
+ --dds-font-weight-regular: Regular;
142
+ --dds-font-family-base: Roboto; /* The primary font used in the DDS Design Kit is Roboto */
143
+ --dds-regular-normal-300: 400 12px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
144
+ --dds-regular-normal-350: 400 14px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
145
+ --dds-regular-normal-400: 400 16px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
146
+ --dds-regular-tight-300: 400 12px/1.3 Roboto; /* Body is primarily used for components and for blocks of text. */
147
+ --dds-regular-tight-350: 400 14px/1.3 Roboto; /* Body is primarily used for components and for blocks of text. */
148
+ --dds-regular-tight-400: 400 16px/1.3 Roboto; /* Body is primarily used for components and for blocks of text. */
149
+ --dds-regular-bold-normal-300: 700 12px/1.5 Roboto; /* Header is used to create various levels of typographic hierarchies. */
150
+ --dds-regular-bold-normal-350: 700 14px/1.5 Roboto; /* Header is used to create various levels of typographic hierarchies. */
151
+ --dds-regular-bold-normal-400: 700 16px/1.5 Roboto; /* Header is used to create various levels of typographic hierarchies. */
152
+ --dds-regular-bold-tight-300: 700 12px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
153
+ --dds-regular-bold-tight-350: 700 14px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
154
+ --dds-regular-bold-tight-400: 700 16px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
155
+ --dds-checkbox-border-unselected: 2px solid #bfbfbf;
156
+ --dds-checkbox-color-background: #30ade9;
157
+ --dds-checkbox-color-icon: #ffffff;
158
+ --dds-dropdown-color-background: #ffffff;
159
+ --dds-dropdown-color-text: #515151;
160
+ --dds-dropdown-tray-color-background-selected: #ebebeb;
161
+ --dds-table-color-background: #ffffff;
162
+ --dds-table-color-text: #515151;
163
+ --dds-table-header-border: 1px none #000000;
164
+ --dds-table-cell-border: 1px none #ebebeb;
165
+ --dds-table-page-number-color-background-selected: #828282;
166
+ --dds-table-page-number-color-text-default: #515151;
167
+ --dds-table-page-number-color-text-selected: #ffffff;
168
+ --dds-table-page-number-border-hover: 1px none #828282;
169
+ --dds-login-sso-button-border: 1px none #616161;
170
+ --dds-login-sso-button-color-text: #616161;
171
+ --dds-form-color-background: #ffffff;
172
+ --dds-form-color-text-default: #414141;
173
+ --dds-form-color-text-placeholder: #828282;
174
+ --dds-form-color-text-positive: #00c3ac;
175
+ --dds-form-color-text-negative: #f21a27;
176
+ --dds-notification-color-background-success: #00c3ac;
177
+ --dds-notification-color-background-error: #f21a27;
178
+ --dds-notification-color-background-warning: #ffbf0e;
179
+ --dds-notification-color-background-alarm: #fa7a12;
180
+ --dds-notification-color-background-information: #30ade9;
181
+ --dds-icon-color-background: #ffffff;
182
+ --dds-container-color-background: #515151;
183
+ --dds-container-color-text-header: #ffffff;
184
+ --dds-container-color-text-body: #f2f2f2;
185
+ --dds-container-shadow: 0 -2px 19px 0 rgba(255, 255, 255, 0.1);
186
+ --dds-button-color-background-primary-active: #db4f66; /* Color used for the default state of a secondary button */
187
+ --dds-button-color-background-primary-hover: #c8102e;
188
+ --dds-button-color-background-primary-press: #f8aeba;
189
+ --dds-button-color-background-primary-focus: #f5c0b8;
190
+ --dds-button-color-background-primary-disabled: #616161;
191
+ --dds-button-color-border-secondary-active: #db4f66;
192
+ --dds-button-color-border-secondary-hover: #c8102e;
193
+ --dds-button-color-border-secondary-press: #f8aeba;
194
+ --dds-button-color-border-secondary-focus: #f5c0b8;
195
+ --dds-button-color-border-secondary-disabled: #616161;
196
+ --dds-button-color-text-secondary-active: #db4f66;
197
+ --dds-button-color-text-secondary-hover: #c8102e;
198
+ --dds-button-color-text-secondary-press: #f8aeba;
199
+ --dds-button-color-text-secondary-focus: #f5c0b8;
200
+ --dds-button-color-text-secondary-disabled: #616161;
201
+ --dds-button-color-text-primary: #515151;
202
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ :root {
6
+ --dds-button-color-background-primary-active: #c8102e; /* Color used for the default state of a secondary button */
7
+ --dds-button-color-background-primary-hover: #db4f66;
8
+ --dds-button-color-background-primary-press: #d2324c;
9
+ --dds-button-color-background-primary-focus: #f8aeba;
10
+ --dds-button-color-background-primary-disabled: #dcdcdc;
11
+ --dds-button-color-border-secondary-active: #c8102e;
12
+ --dds-button-color-border-secondary-hover: #db4f66;
13
+ --dds-button-color-border-secondary-press: #d2324c;
14
+ --dds-button-color-border-secondary-focus: #f8aeba;
15
+ --dds-button-color-border-secondary-disabled: #dcdcdc;
16
+ --dds-button-color-text-secondary-active: #c8102e;
17
+ --dds-button-color-text-secondary-hover: #db4f66;
18
+ --dds-button-color-text-secondary-press: #d2324c;
19
+ --dds-button-color-text-secondary-focus: #f8aeba;
20
+ --dds-button-color-text-secondary-disabled: #dcdcdc;
21
+ --dds-button-color-text-primary: #ffffff;
22
+ }
@@ -0,0 +1,202 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ :root {
6
+ --dds-color-blue-10: #ddf3fc;
7
+ --dds-color-blue-20: #bbe7f9;
8
+ --dds-color-blue-30: #98dbf7;
9
+ --dds-color-blue-40: #76cff4;
10
+ --dds-color-blue-50: #54c3f1;
11
+ --dds-color-blue-60: #30ade9;
12
+ --dds-color-blue-70: #0097e0;
13
+ --dds-color-blue-80: #0081c0;
14
+ --dds-color-blue-90: #00689a;
15
+ --dds-color-blue-100: #005077;
16
+ --dds-color-blue-110: #004160;
17
+ --dds-color-blue-120: #002b40;
18
+ --dds-color-green-10: #ccfef8;
19
+ --dds-color-green-20: #9bfaef;
20
+ --dds-color-green-30: #6cf5e4;
21
+ --dds-color-green-40: #3bf1dc;
22
+ --dds-color-green-50: #13e5cc;
23
+ --dds-color-green-60: #00c3ac;
24
+ --dds-color-green-70: #008f7e;
25
+ --dds-color-green-80: #007b6c;
26
+ --dds-color-green-90: #00665a;
27
+ --dds-color-green-100: #005248;
28
+ --dds-color-green-110: #003d36;
29
+ --dds-color-green-120: #002924;
30
+ --dds-color-yellow-10: #fff4d7;
31
+ --dds-color-yellow-20: #ffeaaf;
32
+ --dds-color-yellow-30: #ffd45f;
33
+ --dds-color-yellow-40: #ffc936;
34
+ --dds-color-yellow-50: #ffbf0e;
35
+ --dds-color-yellow-60: #efb000;
36
+ --dds-color-yellow-70: #b88700;
37
+ --dds-color-yellow-80: #9e7400;
38
+ --dds-color-yellow-90: #836000;
39
+ --dds-color-yellow-100: #694d00;
40
+ --dds-color-yellow-110: #4f3a00;
41
+ --dds-color-yellow-120: #352700;
42
+ --dds-color-orange-10: #feead9;
43
+ --dds-color-orange-20: #fcd4b3;
44
+ --dds-color-orange-30: #fbbf8e;
45
+ --dds-color-orange-40: #ff9c4b;
46
+ --dds-color-orange-50: #fd8b2e;
47
+ --dds-color-orange-60: #fa7a12;
48
+ --dds-color-orange-70: #e46b08;
49
+ --dds-color-orange-80: #b45100;
50
+ --dds-color-orange-90: #964400;
51
+ --dds-color-orange-100: #783600;
52
+ --dds-color-orange-110: #5a2900;
53
+ --dds-color-orange-120: #3c1b00;
54
+ --dds-color-red-10: #fdd9db;
55
+ --dds-color-red-20: #fbb3b7;
56
+ --dds-color-red-30: #f98d93;
57
+ --dds-color-red-40: #f7666f;
58
+ --dds-color-red-50: #f4404b;
59
+ --dds-color-red-60: #f21a27;
60
+ --dds-color-red-70: #d80c18;
61
+ --dds-color-red-80: #b90a15;
62
+ --dds-color-red-90: #9a0911;
63
+ --dds-color-red-100: #7b070e;
64
+ --dds-color-red-110: #5d050a;
65
+ --dds-color-red-120: #3e0307;
66
+ --dds-color-red-aaf-100: #fcecea;
67
+ --dds-color-red-aaf-200: #f5c0b8;
68
+ --dds-color-red-aaf-300: #f8aeba;
69
+ --dds-color-red-aaf-400: #db4f66;
70
+ --dds-color-red-aaf-500: #d2324c;
71
+ --dds-color-red-aaf-600: #c8102e;
72
+ --dds-color-gray-10: #f2f2f2;
73
+ --dds-color-gray-20: #ebebeb;
74
+ --dds-color-gray-30: #dcdcdc;
75
+ --dds-color-gray-40: #cecece;
76
+ --dds-color-gray-50: #bfbfbf;
77
+ --dds-color-gray-60: #a0a0a0;
78
+ --dds-color-gray-70: #828282;
79
+ --dds-color-gray-80: #616161;
80
+ --dds-color-gray-90: #515151;
81
+ --dds-color-gray-100: #414141;
82
+ --dds-color-gray-110: #313131;
83
+ --dds-color-gray-120: #212121;
84
+ --dds-color-black: #000000;
85
+ --dds-color-white: #ffffff;
86
+ --dds-color-black-shadow: rgba(0, 0, 0, 0.1);
87
+ --dds-color-white-shadow: rgba(255, 255, 255, 0.1);
88
+ --dds-color-blue-gray-10: #eef0f2;
89
+ --dds-color-blue-gray-20: #d8dde0;
90
+ --dds-color-blue-gray-30: #bbc1c7;
91
+ --dds-color-blue-gray-40: #a4acb4;
92
+ --dds-color-blue-gray-50: #8d98a1;
93
+ --dds-color-blue-gray-60: #76838e;
94
+ --dds-color-blue-gray-70: #636e78;
95
+ --dds-color-blue-gray-80: #505961;
96
+ --dds-color-blue-gray-90: #444b52;
97
+ --dds-color-blue-gray-100: #30353a;
98
+ --dds-color-blue-gray-110: #282c30;
99
+ --dds-color-blue-gray-120: #1b1e21;
100
+ --dds-color-dark-gray-105: #383838;
101
+ --dds-color-dark-gray-115: #282828;
102
+ --dds-color-dark-gray-125: #1a1a1a;
103
+ --dds-color-feedback-positive: #00c3ac; /* System status is positive */
104
+ --dds-color-feedback-warning: #ffbf0e; /* System status is warning */
105
+ --dds-color-feedback-negative: #f21a27; /* System status is warning */
106
+ --dds-color-feedback-alarm: #fa7a12; /* System status is warning */
107
+ --dds-color-feedback-information: #30ade9; /* System status is warning */
108
+ --dds-color-brand-primary: #c8102e; /* Primary brand blue */
109
+ --dds-color-brand-secondary: #db4f66;
110
+ --dds-color-text-brand-primary: #c8102e;
111
+ --dds-color-text-theme: #ffffff;
112
+ --dds-color-text-default: #515151;
113
+ --dds-color-text-default-sub: #828282;
114
+ --dds-color-background-theme: #ffffff;
115
+ --dds-color-background-component: #ffffff;
116
+ --dds-color-background-object: #515151;
117
+ --dds-border-radius-100: 4px;
118
+ --dds-border-radius-150: 6px;
119
+ --dds-border-radius-200: 8px;
120
+ --dds-border-radius-250: 10px;
121
+ --dds-border-radius-300: 12px;
122
+ --dds-border-radius-400: 16px;
123
+ --dds-border-radius-050: 2px;
124
+ --dds-border-width-100: 4px;
125
+ --dds-border-width-025: 1px;
126
+ --dds-border-width-050: 2px;
127
+ --dds-space-100: 4px;
128
+ --dds-space-200: 8px;
129
+ --dds-space-300: 12px;
130
+ --dds-space-400: 16px;
131
+ --dds-space-800: 32px;
132
+ --dds-space-050: 2px;
133
+ --dds-shadow-black: 0 -2px 19px 0 rgba(0, 0, 0, 0.1);
134
+ --dds-shadow-white: 0 -2px 19px 0 rgba(255, 255, 255, 0.1);
135
+ --dds-font-size-300: 12px;
136
+ --dds-font-size-350: 14px;
137
+ --dds-font-size-400: 16px;
138
+ --dds-line-height-tight: 130%;
139
+ --dds-line-height-normal: 150%;
140
+ --dds-font-weight-bold: Bold;
141
+ --dds-font-weight-regular: Regular;
142
+ --dds-font-family-base: Roboto; /* The primary font used in the DDS Design Kit is Roboto */
143
+ --dds-regular-normal-300: 400 12px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
144
+ --dds-regular-normal-350: 400 14px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
145
+ --dds-regular-normal-400: 400 16px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
146
+ --dds-regular-tight-300: 400 12px/1.3 Roboto; /* Body is primarily used for components and for blocks of text. */
147
+ --dds-regular-tight-350: 400 14px/1.3 Roboto; /* Body is primarily used for components and for blocks of text. */
148
+ --dds-regular-tight-400: 400 16px/1.3 Roboto; /* Body is primarily used for components and for blocks of text. */
149
+ --dds-regular-bold-normal-300: 700 12px/1.5 Roboto; /* Header is used to create various levels of typographic hierarchies. */
150
+ --dds-regular-bold-normal-350: 700 14px/1.5 Roboto; /* Header is used to create various levels of typographic hierarchies. */
151
+ --dds-regular-bold-normal-400: 700 16px/1.5 Roboto; /* Header is used to create various levels of typographic hierarchies. */
152
+ --dds-regular-bold-tight-300: 700 12px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
153
+ --dds-regular-bold-tight-350: 700 14px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
154
+ --dds-regular-bold-tight-400: 700 16px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
155
+ --dds-checkbox-border-unselected: 2px solid #bfbfbf;
156
+ --dds-checkbox-color-background: #30ade9;
157
+ --dds-checkbox-color-icon: #ffffff;
158
+ --dds-dropdown-color-background: #ffffff;
159
+ --dds-dropdown-color-text: #515151;
160
+ --dds-dropdown-tray-color-background-selected: #ebebeb;
161
+ --dds-table-color-background: #ffffff;
162
+ --dds-table-color-text: #515151;
163
+ --dds-table-header-border: 1px none #000000;
164
+ --dds-table-cell-border: 1px none #ebebeb;
165
+ --dds-table-page-number-color-background-selected: #828282;
166
+ --dds-table-page-number-color-text-default: #515151;
167
+ --dds-table-page-number-color-text-selected: #ffffff;
168
+ --dds-table-page-number-border-hover: 1px none #828282;
169
+ --dds-login-sso-button-border: 1px none #616161;
170
+ --dds-login-sso-button-color-text: #616161;
171
+ --dds-form-color-background: #ffffff;
172
+ --dds-form-color-text-default: #414141;
173
+ --dds-form-color-text-placeholder: #828282;
174
+ --dds-form-color-text-positive: #00c3ac;
175
+ --dds-form-color-text-negative: #f21a27;
176
+ --dds-notification-color-background-success: #00c3ac;
177
+ --dds-notification-color-background-error: #f21a27;
178
+ --dds-notification-color-background-warning: #ffbf0e;
179
+ --dds-notification-color-background-alarm: #fa7a12;
180
+ --dds-notification-color-background-information: #30ade9;
181
+ --dds-icon-color-background: #515151;
182
+ --dds-container-color-background: #ffffff;
183
+ --dds-container-color-text-header: #515151;
184
+ --dds-container-color-text-body: #828282;
185
+ --dds-container-shadow: 0 -2px 19px 0 rgba(0, 0, 0, 0.1);
186
+ --dds-button-color-background-primary-active: #c8102e; /* Color used for the default state of a secondary button */
187
+ --dds-button-color-background-primary-hover: #db4f66;
188
+ --dds-button-color-background-primary-press: #d2324c;
189
+ --dds-button-color-background-primary-focus: #f8aeba;
190
+ --dds-button-color-background-primary-disabled: #dcdcdc;
191
+ --dds-button-color-border-secondary-active: #c8102e;
192
+ --dds-button-color-border-secondary-hover: #db4f66;
193
+ --dds-button-color-border-secondary-press: #d2324c;
194
+ --dds-button-color-border-secondary-focus: #f8aeba;
195
+ --dds-button-color-border-secondary-disabled: #dcdcdc;
196
+ --dds-button-color-text-secondary-active: #c8102e;
197
+ --dds-button-color-text-secondary-hover: #db4f66;
198
+ --dds-button-color-text-secondary-press: #d2324c;
199
+ --dds-button-color-text-secondary-focus: #f8aeba;
200
+ --dds-button-color-text-secondary-disabled: #dcdcdc;
201
+ --dds-button-color-text-primary: #ffffff;
202
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ :root {
6
+ --dds-button-color-background-primary-active: #76cff4; /* Color used for the default state of a secondary button */
7
+ --dds-button-color-background-primary-hover: #30ade9;
8
+ --dds-button-color-background-primary-press: #98dbf7;
9
+ --dds-button-color-background-primary-focus: #bbe7f9;
10
+ --dds-button-color-background-primary-disabled: #616161;
11
+ --dds-button-color-border-secondary-active: #76cff4;
12
+ --dds-button-color-border-secondary-hover: #30ade9;
13
+ --dds-button-color-border-secondary-press: #98dbf7;
14
+ --dds-button-color-border-secondary-focus: #bbe7f9;
15
+ --dds-button-color-border-secondary-disabled: #616161;
16
+ --dds-button-color-text-secondary-active: #76cff4;
17
+ --dds-button-color-text-secondary-hover: #30ade9;
18
+ --dds-button-color-text-secondary-press: #98dbf7;
19
+ --dds-button-color-text-secondary-focus: #bbe7f9;
20
+ --dds-button-color-text-secondary-disabled: #616161;
21
+ --dds-button-color-text-primary: #414141;
22
+ }