@bdc-libs/trinity-token-services 0.1.2
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.
- package/LICENSE +21 -0
- package/README.md +27 -0
- package/output/index.ts +11 -0
- package/output/ng/tokens-altvs.css.ts +188 -0
- package/output/ng/tokens-bdc.css.ts +188 -0
- package/output/ng/tokens-bernardus.css.ts +198 -0
- package/output/ng/tokens-brand.css.ts +198 -0
- package/output/ng/tokens-cade.css.ts +188 -0
- package/output/ng/tokens-caymus.css.ts +188 -0
- package/output/ng/tokens-frb.css.ts +192 -0
- package/output/ng/tokens-frog.css.ts +198 -0
- package/output/ng/tokens-ibank.css.ts +188 -0
- package/output/ng/tokens-knights-bridge.css.ts +188 -0
- package/output/ng/tokens-white-rock.css.ts +188 -0
- package/package.json +19 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License Copyright (c) 2021
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free
|
|
4
|
+
of charge, to any person obtaining a copy of this software and associated
|
|
5
|
+
documentation files (the "Software"), to deal in the Software without
|
|
6
|
+
restriction, including without limitation the rights to use, copy, modify, merge,
|
|
7
|
+
publish, distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to the
|
|
9
|
+
following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice
|
|
12
|
+
(including the next paragraph) shall be included in all copies or substantial
|
|
13
|
+
portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
16
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
18
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
19
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
20
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# @bdc-libs/trinity-token-services
|
|
2
|
+
|
|
3
|
+
Trinity token services libs.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- ES6 syntax, managed with Prettier + Eslint and Stylelint
|
|
8
|
+
- Unit testing
|
|
9
|
+
- Lit
|
|
10
|
+
- Custom elements
|
|
11
|
+
- ESM
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
yarn add @bdc-libs/trinity-token-services
|
|
17
|
+
// or
|
|
18
|
+
npm i @bdc-libs/trinity-token-services
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### Usage
|
|
22
|
+
|
|
23
|
+
```js
|
|
24
|
+
import communicatorModule from '@bdc-libs/trinity-token-services';
|
|
25
|
+
|
|
26
|
+
angular.module('myApp', [communicatorModule]);
|
|
27
|
+
```
|
package/output/index.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from './ng/tokens-altvs.css';
|
|
2
|
+
export * from './ng/tokens-bdc.css';
|
|
3
|
+
export * from './ng/tokens-bernardus.css';
|
|
4
|
+
export * from './ng/tokens-brand.css';
|
|
5
|
+
export * from './ng/tokens-cade.css';
|
|
6
|
+
export * from './ng/tokens-caymus.css';
|
|
7
|
+
export * from './ng/tokens-frb.css';
|
|
8
|
+
export * from './ng/tokens-frog.css';
|
|
9
|
+
export * from './ng/tokens-ibank.css';
|
|
10
|
+
export * from './ng/tokens-knights-bridge.css';
|
|
11
|
+
export * from './ng/tokens-white-rock.css';
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
import { TriTheme } from './symbols';
|
|
2
|
+
|
|
3
|
+
export const altvsTriTheme: TriTheme = {
|
|
4
|
+
name: 'altvs',
|
|
5
|
+
properties: {
|
|
6
|
+
'--tri-color-feedback-info-primary': '#006fcf',
|
|
7
|
+
'--tri-color-feedback-info-tone': '#006fcf',
|
|
8
|
+
'--tri-color-feedback-info-tint': '#ffffff',
|
|
9
|
+
'--tri-color-feedback-error-primary': '#df0000',
|
|
10
|
+
'--tri-color-feedback-error-tone': '#df0000',
|
|
11
|
+
'--tri-color-feedback-error-tint': '#ffffff',
|
|
12
|
+
'--tri-color-feedback-success-primary': '#289b31',
|
|
13
|
+
'--tri-color-feedback-success-tone': '#289b31',
|
|
14
|
+
'--tri-color-feedback-success-tint': '#ffffff',
|
|
15
|
+
'--tri-color-feedback-warning-primary': '#ffa200',
|
|
16
|
+
'--tri-color-feedback-warning-tone': '#ffa200',
|
|
17
|
+
'--tri-color-feedback-warning-tint': '#ffffff',
|
|
18
|
+
'--tri-color-highlight-special-primary': '#a200db',
|
|
19
|
+
'--tri-color-highlight-special-tone': '#d766ff',
|
|
20
|
+
'--tri-color-highlight-special-tint': '#fbf0ff',
|
|
21
|
+
'--tri-color-highlight-region': '#eef3fa',
|
|
22
|
+
'--tri-color-border-primary': '#eaeaea',
|
|
23
|
+
'--tri-color-border-secondary': '#e0e0e0',
|
|
24
|
+
'--tri-color-border-tertiary': '#bdbdbd',
|
|
25
|
+
'--tri-color-border-inverse': '#ffffff',
|
|
26
|
+
'--tri-color-background-primary': '#006fcf',
|
|
27
|
+
'--tri-color-background-secondary': '#e0e0e0',
|
|
28
|
+
'--tri-color-background-tertiary': '#eaeaea',
|
|
29
|
+
'--tri-color-background-tint': '#f9f9f9',
|
|
30
|
+
'--tri-color-background-inverse': '#ffffff',
|
|
31
|
+
'--tri-color-text-primary': '#000000',
|
|
32
|
+
'--tri-color-text-secondary': '#424242',
|
|
33
|
+
'--tri-color-text-tertiary': '#616161',
|
|
34
|
+
'--tri-color-text-inverse': '#ffffff',
|
|
35
|
+
'--tri-color-text-accent': '#f26911',
|
|
36
|
+
'--tri-color-state-default-primary': '#00175a',
|
|
37
|
+
'--tri-color-state-default-secondary': '#00175a',
|
|
38
|
+
'--tri-color-state-default-inverse': '#ffffff',
|
|
39
|
+
'--tri-color-state-default-neutral': '#616161',
|
|
40
|
+
'--tri-color-state-default-accent': '#f26911',
|
|
41
|
+
'--tri-color-state-hover-primary': '#006fcf',
|
|
42
|
+
'--tri-color-state-hover-secondary': '#bedff6',
|
|
43
|
+
'--tri-color-state-hover-tertiary': '#f9f9f9',
|
|
44
|
+
'--tri-color-state-hover-accent': '#f26911',
|
|
45
|
+
'--tri-color-state-pressed-primary': '#00175a',
|
|
46
|
+
'--tri-color-state-pressed-secondary': '#e5f2fb',
|
|
47
|
+
'--tri-color-state-pressed-tertiary': '#bedff6',
|
|
48
|
+
'--tri-color-state-pressed-accent': '#f26911',
|
|
49
|
+
'--tri-color-state-selected-primary': '#00175a',
|
|
50
|
+
'--tri-color-state-selected-secondary': '#d1e9fa',
|
|
51
|
+
'--tri-color-state-selected-tertiary': '#e5f2fb',
|
|
52
|
+
'--tri-color-state-selected-inverse': '#ffffff',
|
|
53
|
+
'--tri-color-state-unselected-primary': '#616161',
|
|
54
|
+
'--tri-color-state-unselected-secondary': '#f5f5f5',
|
|
55
|
+
'--tri-color-state-unselected-inverse': '#ffffff',
|
|
56
|
+
'--tri-color-state-disabled-primary': '#707070',
|
|
57
|
+
'--tri-color-state-disabled-secondary': '#bdbdbd',
|
|
58
|
+
'--tri-color-state-disabled-tertiary': '#eaeaea',
|
|
59
|
+
'--tri-color-state-focus-ring': '#4098e3',
|
|
60
|
+
'--tri-font-hero': '700 32px/40px "Benton Sans Reg"',
|
|
61
|
+
'--tri-font-heading-xl': '700 24px/32px "Benton Sans Reg"',
|
|
62
|
+
'--tri-font-heading-l': '700 20px/28px "Benton Sans Reg"',
|
|
63
|
+
'--tri-font-heading-m': '700 16px/24px "Benton Sans Reg"',
|
|
64
|
+
'--tri-font-heading-s': '700 14px/20px "Benton Sans Reg"',
|
|
65
|
+
'--tri-font-heading-xs': '700 12px/16px "Benton Sans Reg"',
|
|
66
|
+
'--tri-font-body-l': '400 16px/24px "Benton Sans Reg"',
|
|
67
|
+
'--tri-font-body-m': '400 14px/20px "Benton Sans Reg"',
|
|
68
|
+
'--tri-font-body-s': '400 12px/16px "Benton Sans Reg"',
|
|
69
|
+
'--tri-font-body-xs': '400 10px/12px "Benton Sans Reg"',
|
|
70
|
+
'--tri-font-body-l-bold': '700 16px/24px "Benton Sans Reg"',
|
|
71
|
+
'--tri-font-body-m-bold': '700 14px/20px "Benton Sans Reg"',
|
|
72
|
+
'--tri-font-body-s-bold': '700 12px/16px "Benton Sans Reg"',
|
|
73
|
+
'--tri-font-body-xs-bold': '700 10px/12px "Benton Sans Reg"',
|
|
74
|
+
'--tri-font-family-175': '"Benton Sans Reg", "Helvetica Bold", sans-serif',
|
|
75
|
+
'--tri-font-family-100': '"Benton Sans Reg", Helvetica, sans-serif',
|
|
76
|
+
'--tri-font-size-68': '10px',
|
|
77
|
+
'--tri-font-size-75': '12px',
|
|
78
|
+
'--tri-font-size-88': '14px',
|
|
79
|
+
'--tri-font-size-100': '16px',
|
|
80
|
+
'--tri-font-size-125': '20px',
|
|
81
|
+
'--tri-font-size-150': '24px',
|
|
82
|
+
'--tri-font-size-200': '32px',
|
|
83
|
+
'--tri-font-size-300': '48px',
|
|
84
|
+
'--tri-font-line-height-75': '12px',
|
|
85
|
+
'--tri-font-line-height-100': '16px',
|
|
86
|
+
'--tri-font-line-height-125': '20px',
|
|
87
|
+
'--tri-font-line-height-150': '24px',
|
|
88
|
+
'--tri-font-line-height-175': '28px',
|
|
89
|
+
'--tri-font-line-height-225': '32px',
|
|
90
|
+
'--tri-font-line-height-250': '40px',
|
|
91
|
+
'--tri-font-line-height-350': '56px',
|
|
92
|
+
'--tri-font-weight-100': '400',
|
|
93
|
+
'--tri-font-weight-175': '700',
|
|
94
|
+
'--tri-space-25': '2px',
|
|
95
|
+
'--tri-space-50': '4px',
|
|
96
|
+
'--tri-space-75': '6px',
|
|
97
|
+
'--tri-space-100': '8px',
|
|
98
|
+
'--tri-space-150': '12px',
|
|
99
|
+
'--tri-space-175': '14px',
|
|
100
|
+
'--tri-space-200': '16px',
|
|
101
|
+
'--tri-space-250': '20px',
|
|
102
|
+
'--tri-space-300': '24px',
|
|
103
|
+
'--tri-space-350': '28px',
|
|
104
|
+
'--tri-space-400': '32px',
|
|
105
|
+
'--tri-space-500': '40px',
|
|
106
|
+
'--tri-space-600': '48px',
|
|
107
|
+
'--tri-space-800': '64px',
|
|
108
|
+
'--tri-space-1100': '88px',
|
|
109
|
+
'--tri-space-1600': '128px',
|
|
110
|
+
'--tri-space-1800': '144px',
|
|
111
|
+
'--tri-space-2000': '160px',
|
|
112
|
+
'--tri-space-3000': '240px',
|
|
113
|
+
'--tri-space-4700': '375px',
|
|
114
|
+
'--tri-effect-border-radius-0': '0px',
|
|
115
|
+
'--tri-effect-border-radius-25': '2px',
|
|
116
|
+
'--tri-effect-border-radius-50': '4px',
|
|
117
|
+
'--tri-effect-border-radius-100': '8px',
|
|
118
|
+
'--tri-effect-border-radius-1000': '50%',
|
|
119
|
+
'--tri-effect-opacity-50': 'opacity(20%)',
|
|
120
|
+
'--tri-effect-opacity-100': 'opacity(40%)',
|
|
121
|
+
'--tri-effect-opacity-150': 'opacity(60%)',
|
|
122
|
+
'--tri-effect-border-primary': '1px solid #eaeaea',
|
|
123
|
+
'--tri-effect-border-secondary': '1px solid #e0e0e0',
|
|
124
|
+
'--tri-effect-border-tertiary': '1px solid #bdbdbd',
|
|
125
|
+
'--tri-effect-border-inverse': '1px solid #ffffff',
|
|
126
|
+
'--tri-effect-border-focus': '1px solid #4098e3',
|
|
127
|
+
'--tri-effect-border-primary-unselected': '1px solid #616161',
|
|
128
|
+
'--tri-effect-border-width-100': '1px',
|
|
129
|
+
'--tri-effect-border-width-200': '2px',
|
|
130
|
+
'--tri-animation-duration-50': '50ms',
|
|
131
|
+
'--tri-animation-duration-100': '100ms',
|
|
132
|
+
'--tri-animation-duration-150': '150ms',
|
|
133
|
+
'--tri-animation-duration-200': '200ms',
|
|
134
|
+
'--tri-animation-duration-250': '250ms',
|
|
135
|
+
'--tri-animation-duration-300': '300ms',
|
|
136
|
+
'--tri-animation-duration-350': '350ms',
|
|
137
|
+
'--tri-animation-duration-400': '400ms',
|
|
138
|
+
'--tri-animation-duration-450': '450ms',
|
|
139
|
+
'--tri-animation-duration-500': '500ms',
|
|
140
|
+
'--tri-animation-delay-50': '50ms',
|
|
141
|
+
'--tri-animation-delay-100': '100ms',
|
|
142
|
+
'--tri-animation-delay-150': '150ms',
|
|
143
|
+
'--tri-animation-delay-200': '200ms',
|
|
144
|
+
'--tri-animation-delay-250': '250ms',
|
|
145
|
+
'--tri-animation-delay-300': '300ms',
|
|
146
|
+
'--tri-animation-delay-350': '350ms',
|
|
147
|
+
'--tri-animation-delay-400': '400ms',
|
|
148
|
+
'--tri-animation-delay-450': '450ms',
|
|
149
|
+
'--tri-animation-delay-500': '500ms',
|
|
150
|
+
'--tri-animation-fade-default': '250ms',
|
|
151
|
+
'--tri-animation-fade-page': '350ms',
|
|
152
|
+
'--tri-animation-slide-default': '250ms',
|
|
153
|
+
'--tri-animation-slide-page': '350ms',
|
|
154
|
+
'--tri-animation-scale-default': '250ms',
|
|
155
|
+
'--tri-animation-scale-page': '350ms',
|
|
156
|
+
'--tri-animation-state-active': '150ms',
|
|
157
|
+
'--tri-animation-state-focus': '150ms',
|
|
158
|
+
'--tri-animation-state-hover': '150ms',
|
|
159
|
+
'--tri-animation-easing-ease-in': 'cubic-bezier(0.42, 0, 1, 1)',
|
|
160
|
+
'--tri-animation-easing-ease-in-out': 'cubic-bezier(0.42, 0, 0.58, 1)',
|
|
161
|
+
'--tri-animation-easing-linear': 'cubic-bezier(0, 0, 1, 1)',
|
|
162
|
+
'--tri-animation-easing-ease-out': 'cubic-bezier(0, 0, 0.58, 1)',
|
|
163
|
+
'--tri-animation-easing-ease': 'cubic-bezier(0.25, 0.1, 0.25, 1)',
|
|
164
|
+
'--tri-animation-transition-200': 'all 200ms linear',
|
|
165
|
+
'--tri-shadow-100': '0px 2px 1px 0px #0000001f, 0px 1px 3px 0px #00000005',
|
|
166
|
+
'--tri-shadow-200': '0px 3px 1px 0px #0000001f, 0px 1px 5px 0px #00000005',
|
|
167
|
+
'--tri-shadow-300': '0px 3px 3px 0px #0000001f, 0px 1px 8px 0px #00000005',
|
|
168
|
+
'--tri-shadow-400': '0px 1px 10px 0px #0000001f, 0px 2px 4px 0px #00000005',
|
|
169
|
+
'--tri-shadow-600': '0px 1px 18px 0px #0000001f, 0px 3px 5px 0px #00000005',
|
|
170
|
+
'--tri-shadow-800': '0px 3px 14px 0px #0000001f, 0px 5px 5px 0px #00000005',
|
|
171
|
+
'--tri-shadow-900': '0px 3px 16px 0px #0000001f, 0px 5px 6px 0px #00000005',
|
|
172
|
+
'--tri-shadow-1200': '0px 5px 22px 0px #0000001f, 0px 7px 8px 0px #00000005',
|
|
173
|
+
'--tri-shadow-1600': '0px 6px 30px 0px #0000001f, 0px 8px 10px 0px #00000005',
|
|
174
|
+
'--tri-shadow-2400': '0px 9px 46px 0px #0000001f, 0px 11px 15px 0px #00000005',
|
|
175
|
+
'--tri-shadow-focus': '0px 0px 0px 2px #ffffff, 0px 0px 0px 4px #4098e3',
|
|
176
|
+
'--tri-responsive-breakpoint-s': '576px',
|
|
177
|
+
'--tri-responsive-breakpoint-m': '768px',
|
|
178
|
+
'--tri-responsive-breakpoint-l': '992px',
|
|
179
|
+
'--tri-responsive-breakpoint-xl': '1200px',
|
|
180
|
+
'--tri-responsive-column-s': '8',
|
|
181
|
+
'--tri-responsive-column-m': '12',
|
|
182
|
+
'--tri-responsive-column-l': '12',
|
|
183
|
+
'--tri-responsive-column-xl': '12',
|
|
184
|
+
'--tri-responsive-grid-gutter-100': '16px',
|
|
185
|
+
'--tri-responsive-grid-margin-100': '24px',
|
|
186
|
+
'--tri-responsive-max-width-1000': '1632px'
|
|
187
|
+
}
|
|
188
|
+
};
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
import { TriTheme } from './symbols';
|
|
2
|
+
|
|
3
|
+
export const bdcTriTheme: TriTheme = {
|
|
4
|
+
name: 'bdc',
|
|
5
|
+
properties: {
|
|
6
|
+
'--tri-color-feedback-info-primary': '#012169',
|
|
7
|
+
'--tri-color-feedback-info-tone': '#96cbf0',
|
|
8
|
+
'--tri-color-feedback-info-tint': '#e5f2fb',
|
|
9
|
+
'--tri-color-feedback-error-primary': '#df0000',
|
|
10
|
+
'--tri-color-feedback-error-tone': '#eca8a8',
|
|
11
|
+
'--tri-color-feedback-error-tint': '#fef9f9',
|
|
12
|
+
'--tri-color-feedback-success-primary': '#38861b',
|
|
13
|
+
'--tri-color-feedback-success-tone': '#b4de97',
|
|
14
|
+
'--tri-color-feedback-success-tint': '#fafff5',
|
|
15
|
+
'--tri-color-feedback-warning-primary': '#c74801',
|
|
16
|
+
'--tri-color-feedback-warning-tone': '#face9b',
|
|
17
|
+
'--tri-color-feedback-warning-tint': '#fdfaf3',
|
|
18
|
+
'--tri-color-highlight-special-primary': '#a200db',
|
|
19
|
+
'--tri-color-highlight-special-tone': '#d766ff',
|
|
20
|
+
'--tri-color-highlight-special-tint': '#fbf0ff',
|
|
21
|
+
'--tri-color-highlight-region': '#eef3fa',
|
|
22
|
+
'--tri-color-border-primary': '#eaeaea',
|
|
23
|
+
'--tri-color-border-secondary': '#e0e0e0',
|
|
24
|
+
'--tri-color-border-tertiary': '#bdbdbd',
|
|
25
|
+
'--tri-color-border-inverse': '#ffffff',
|
|
26
|
+
'--tri-color-background-primary': '#1b2e55',
|
|
27
|
+
'--tri-color-background-secondary': '#e0e0e0',
|
|
28
|
+
'--tri-color-background-tertiary': '#eaeaea',
|
|
29
|
+
'--tri-color-background-tint': '#f9f9f9',
|
|
30
|
+
'--tri-color-background-inverse': '#ffffff',
|
|
31
|
+
'--tri-color-text-primary': '#212121',
|
|
32
|
+
'--tri-color-text-secondary': '#424242',
|
|
33
|
+
'--tri-color-text-tertiary': '#616161',
|
|
34
|
+
'--tri-color-text-inverse': '#ffffff',
|
|
35
|
+
'--tri-color-text-accent': '#f07d19',
|
|
36
|
+
'--tri-color-state-default-primary': '#2666b4',
|
|
37
|
+
'--tri-color-state-default-secondary': '#d1e9fa',
|
|
38
|
+
'--tri-color-state-default-inverse': '#ffffff',
|
|
39
|
+
'--tri-color-state-default-neutral': '#616161',
|
|
40
|
+
'--tri-color-state-default-accent': '#f07d19',
|
|
41
|
+
'--tri-color-state-hover-primary': '#1f4b93',
|
|
42
|
+
'--tri-color-state-hover-secondary': '#bedff6',
|
|
43
|
+
'--tri-color-state-hover-tertiary': '#f9f9f9',
|
|
44
|
+
'--tri-color-state-hover-accent': '#e94f0f',
|
|
45
|
+
'--tri-color-state-pressed-primary': '#3179c4',
|
|
46
|
+
'--tri-color-state-pressed-secondary': '#e5f2fb',
|
|
47
|
+
'--tri-color-state-pressed-tertiary': '#bedff6',
|
|
48
|
+
'--tri-color-state-pressed-accent': '#f07d19',
|
|
49
|
+
'--tri-color-state-selected-primary': '#2666b4',
|
|
50
|
+
'--tri-color-state-selected-secondary': '#d1e9fa',
|
|
51
|
+
'--tri-color-state-selected-tertiary': '#e5f2fb',
|
|
52
|
+
'--tri-color-state-selected-inverse': '#ffffff',
|
|
53
|
+
'--tri-color-state-unselected-primary': '#616161',
|
|
54
|
+
'--tri-color-state-unselected-secondary': '#f5f5f5',
|
|
55
|
+
'--tri-color-state-unselected-inverse': '#ffffff',
|
|
56
|
+
'--tri-color-state-disabled-primary': '#707070',
|
|
57
|
+
'--tri-color-state-disabled-secondary': '#bdbdbd',
|
|
58
|
+
'--tri-color-state-disabled-tertiary': '#eaeaea',
|
|
59
|
+
'--tri-color-state-focus-ring': '#4098e3',
|
|
60
|
+
'--tri-font-hero': '700 32px/40px Lato, "Helvetica Bold", sans-serif',
|
|
61
|
+
'--tri-font-heading-xl': '700 24px/32px Lato, "Helvetica Bold", sans-serif',
|
|
62
|
+
'--tri-font-heading-l': '700 20px/28px Lato, "Helvetica Bold", sans-serif',
|
|
63
|
+
'--tri-font-heading-m': '700 16px/24px Lato, "Helvetica Bold", sans-serif',
|
|
64
|
+
'--tri-font-heading-s': '700 14px/20px Lato, "Helvetica Bold", sans-serif',
|
|
65
|
+
'--tri-font-heading-xs': '700 12px/16px Lato, "Helvetica Bold", sans-serif',
|
|
66
|
+
'--tri-font-body-l': '400 16px/24px Lato, Helvetica, sans-serif',
|
|
67
|
+
'--tri-font-body-m': '400 14px/20px Lato, Helvetica, sans-serif',
|
|
68
|
+
'--tri-font-body-s': '400 12px/16px Lato, Helvetica, sans-serif',
|
|
69
|
+
'--tri-font-body-xs': '400 10px/12px Lato, Helvetica, sans-serif',
|
|
70
|
+
'--tri-font-body-l-bold': '700 16px/24px Lato, "Helvetica Bold", sans-serif',
|
|
71
|
+
'--tri-font-body-m-bold': '700 14px/20px Lato, "Helvetica Bold", sans-serif',
|
|
72
|
+
'--tri-font-body-s-bold': '700 12px/16px Lato, "Helvetica Bold", sans-serif',
|
|
73
|
+
'--tri-font-body-xs-bold': '700 10px/12px Lato, "Helvetica Bold", sans-serif',
|
|
74
|
+
'--tri-font-family-175': 'Lato, "Helvetica Bold", sans-serif',
|
|
75
|
+
'--tri-font-family-100': 'Lato, Helvetica, sans-serif',
|
|
76
|
+
'--tri-font-size-68': '10px',
|
|
77
|
+
'--tri-font-size-75': '12px',
|
|
78
|
+
'--tri-font-size-88': '14px',
|
|
79
|
+
'--tri-font-size-100': '16px',
|
|
80
|
+
'--tri-font-size-125': '20px',
|
|
81
|
+
'--tri-font-size-150': '24px',
|
|
82
|
+
'--tri-font-size-200': '32px',
|
|
83
|
+
'--tri-font-size-300': '48px',
|
|
84
|
+
'--tri-font-line-height-75': '12px',
|
|
85
|
+
'--tri-font-line-height-100': '16px',
|
|
86
|
+
'--tri-font-line-height-125': '20px',
|
|
87
|
+
'--tri-font-line-height-150': '24px',
|
|
88
|
+
'--tri-font-line-height-175': '28px',
|
|
89
|
+
'--tri-font-line-height-225': '32px',
|
|
90
|
+
'--tri-font-line-height-250': '40px',
|
|
91
|
+
'--tri-font-line-height-350': '56px',
|
|
92
|
+
'--tri-font-weight-100': '400',
|
|
93
|
+
'--tri-font-weight-175': '700',
|
|
94
|
+
'--tri-space-25': '2px',
|
|
95
|
+
'--tri-space-50': '4px',
|
|
96
|
+
'--tri-space-75': '6px',
|
|
97
|
+
'--tri-space-100': '8px',
|
|
98
|
+
'--tri-space-150': '12px',
|
|
99
|
+
'--tri-space-175': '14px',
|
|
100
|
+
'--tri-space-200': '16px',
|
|
101
|
+
'--tri-space-250': '20px',
|
|
102
|
+
'--tri-space-300': '24px',
|
|
103
|
+
'--tri-space-350': '28px',
|
|
104
|
+
'--tri-space-400': '32px',
|
|
105
|
+
'--tri-space-500': '40px',
|
|
106
|
+
'--tri-space-600': '48px',
|
|
107
|
+
'--tri-space-800': '64px',
|
|
108
|
+
'--tri-space-1100': '88px',
|
|
109
|
+
'--tri-space-1600': '128px',
|
|
110
|
+
'--tri-space-1800': '144px',
|
|
111
|
+
'--tri-space-2000': '160px',
|
|
112
|
+
'--tri-space-3000': '240px',
|
|
113
|
+
'--tri-space-4700': '375px',
|
|
114
|
+
'--tri-effect-border-radius-0': '0px',
|
|
115
|
+
'--tri-effect-border-radius-25': '2px',
|
|
116
|
+
'--tri-effect-border-radius-50': '4px',
|
|
117
|
+
'--tri-effect-border-radius-100': '8px',
|
|
118
|
+
'--tri-effect-border-radius-1000': '50%',
|
|
119
|
+
'--tri-effect-opacity-50': 'opacity(20%)',
|
|
120
|
+
'--tri-effect-opacity-100': 'opacity(40%)',
|
|
121
|
+
'--tri-effect-opacity-150': 'opacity(60%)',
|
|
122
|
+
'--tri-effect-border-primary': '1px solid #eaeaea',
|
|
123
|
+
'--tri-effect-border-secondary': '1px solid #e0e0e0',
|
|
124
|
+
'--tri-effect-border-tertiary': '1px solid #bdbdbd',
|
|
125
|
+
'--tri-effect-border-inverse': '1px solid #ffffff',
|
|
126
|
+
'--tri-effect-border-focus': '1px solid #4098e3',
|
|
127
|
+
'--tri-effect-border-primary-unselected': '1px solid #616161',
|
|
128
|
+
'--tri-effect-border-width-100': '1px',
|
|
129
|
+
'--tri-effect-border-width-200': '2px',
|
|
130
|
+
'--tri-animation-duration-50': '50ms',
|
|
131
|
+
'--tri-animation-duration-100': '100ms',
|
|
132
|
+
'--tri-animation-duration-150': '150ms',
|
|
133
|
+
'--tri-animation-duration-200': '200ms',
|
|
134
|
+
'--tri-animation-duration-250': '250ms',
|
|
135
|
+
'--tri-animation-duration-300': '300ms',
|
|
136
|
+
'--tri-animation-duration-350': '350ms',
|
|
137
|
+
'--tri-animation-duration-400': '400ms',
|
|
138
|
+
'--tri-animation-duration-450': '450ms',
|
|
139
|
+
'--tri-animation-duration-500': '500ms',
|
|
140
|
+
'--tri-animation-delay-50': '50ms',
|
|
141
|
+
'--tri-animation-delay-100': '100ms',
|
|
142
|
+
'--tri-animation-delay-150': '150ms',
|
|
143
|
+
'--tri-animation-delay-200': '200ms',
|
|
144
|
+
'--tri-animation-delay-250': '250ms',
|
|
145
|
+
'--tri-animation-delay-300': '300ms',
|
|
146
|
+
'--tri-animation-delay-350': '350ms',
|
|
147
|
+
'--tri-animation-delay-400': '400ms',
|
|
148
|
+
'--tri-animation-delay-450': '450ms',
|
|
149
|
+
'--tri-animation-delay-500': '500ms',
|
|
150
|
+
'--tri-animation-fade-default': '250ms',
|
|
151
|
+
'--tri-animation-fade-page': '350ms',
|
|
152
|
+
'--tri-animation-slide-default': '250ms',
|
|
153
|
+
'--tri-animation-slide-page': '350ms',
|
|
154
|
+
'--tri-animation-scale-default': '250ms',
|
|
155
|
+
'--tri-animation-scale-page': '350ms',
|
|
156
|
+
'--tri-animation-state-active': '150ms',
|
|
157
|
+
'--tri-animation-state-focus': '150ms',
|
|
158
|
+
'--tri-animation-state-hover': '150ms',
|
|
159
|
+
'--tri-animation-easing-ease-in': 'cubic-bezier(0.42, 0, 1, 1)',
|
|
160
|
+
'--tri-animation-easing-ease-in-out': 'cubic-bezier(0.42, 0, 0.58, 1)',
|
|
161
|
+
'--tri-animation-easing-linear': 'cubic-bezier(0, 0, 1, 1)',
|
|
162
|
+
'--tri-animation-easing-ease-out': 'cubic-bezier(0, 0, 0.58, 1)',
|
|
163
|
+
'--tri-animation-easing-ease': 'cubic-bezier(0.25, 0.1, 0.25, 1)',
|
|
164
|
+
'--tri-animation-transition-200': 'all 200ms linear',
|
|
165
|
+
'--tri-shadow-100': '0px 2px 1px 0px #0000001f, 0px 1px 3px 0px #00000005',
|
|
166
|
+
'--tri-shadow-200': '0px 3px 1px 0px #0000001f, 0px 1px 5px 0px #00000005',
|
|
167
|
+
'--tri-shadow-300': '0px 3px 3px 0px #0000001f, 0px 1px 8px 0px #00000005',
|
|
168
|
+
'--tri-shadow-400': '0px 1px 10px 0px #0000001f, 0px 2px 4px 0px #00000005',
|
|
169
|
+
'--tri-shadow-600': '0px 1px 18px 0px #0000001f, 0px 3px 5px 0px #00000005',
|
|
170
|
+
'--tri-shadow-800': '0px 3px 14px 0px #0000001f, 0px 5px 5px 0px #00000005',
|
|
171
|
+
'--tri-shadow-900': '0px 3px 16px 0px #0000001f, 0px 5px 6px 0px #00000005',
|
|
172
|
+
'--tri-shadow-1200': '0px 5px 22px 0px #0000001f, 0px 7px 8px 0px #00000005',
|
|
173
|
+
'--tri-shadow-1600': '0px 6px 30px 0px #0000001f, 0px 8px 10px 0px #00000005',
|
|
174
|
+
'--tri-shadow-2400': '0px 9px 46px 0px #0000001f, 0px 11px 15px 0px #00000005',
|
|
175
|
+
'--tri-shadow-focus': '0px 0px 0px 2px #ffffff, 0px 0px 0px 4px #4098e3',
|
|
176
|
+
'--tri-responsive-breakpoint-s': '576px',
|
|
177
|
+
'--tri-responsive-breakpoint-m': '768px',
|
|
178
|
+
'--tri-responsive-breakpoint-l': '992px',
|
|
179
|
+
'--tri-responsive-breakpoint-xl': '1200px',
|
|
180
|
+
'--tri-responsive-column-s': '8',
|
|
181
|
+
'--tri-responsive-column-m': '12',
|
|
182
|
+
'--tri-responsive-column-l': '12',
|
|
183
|
+
'--tri-responsive-column-xl': '12',
|
|
184
|
+
'--tri-responsive-grid-gutter-100': '16px',
|
|
185
|
+
'--tri-responsive-grid-margin-100': '24px',
|
|
186
|
+
'--tri-responsive-max-width-1000': '1632px'
|
|
187
|
+
}
|
|
188
|
+
};
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
import { TriTheme } from './symbols';
|
|
2
|
+
|
|
3
|
+
export const bernardusTriTheme: TriTheme = {
|
|
4
|
+
name: 'bernardus',
|
|
5
|
+
properties: {
|
|
6
|
+
'--tri-color-feedback-info-primary': '#009cde',
|
|
7
|
+
'--tri-color-feedback-info-tone': '#96cbf0',
|
|
8
|
+
'--tri-color-feedback-info-tint': '#effaff',
|
|
9
|
+
'--tri-color-feedback-error-primary': '#c41230',
|
|
10
|
+
'--tri-color-feedback-error-tone': '#eca8a8',
|
|
11
|
+
'--tri-color-feedback-error-tint': '#f3d0d6',
|
|
12
|
+
'--tri-color-feedback-success-primary': '#279f00',
|
|
13
|
+
'--tri-color-feedback-success-tone': '#b4de97',
|
|
14
|
+
'--tri-color-feedback-success-tint': '#e5f6ed',
|
|
15
|
+
'--tri-color-feedback-warning-primary': '#d36f12',
|
|
16
|
+
'--tri-color-feedback-warning-tone': '#face9b',
|
|
17
|
+
'--tri-color-feedback-warning-tint': '#fdf6e5',
|
|
18
|
+
'--tri-color-highlight-special-primary': '#a200db',
|
|
19
|
+
'--tri-color-highlight-special-tone': '#d766ff',
|
|
20
|
+
'--tri-color-highlight-special-tint': '#fbf0ff',
|
|
21
|
+
'--tri-color-highlight-region': '#eef3fa',
|
|
22
|
+
'--tri-color-border-primary': '#eaeaea',
|
|
23
|
+
'--tri-color-border-secondary': '#e0e0e0',
|
|
24
|
+
'--tri-color-border-tertiary': '#bdbdbd',
|
|
25
|
+
'--tri-color-border-inverse': '#ffffff',
|
|
26
|
+
'--tri-color-background-primary': '#012169',
|
|
27
|
+
'--tri-color-background-secondary': '#e0e0e0',
|
|
28
|
+
'--tri-color-background-tertiary': '#eaeaea',
|
|
29
|
+
'--tri-color-background-tint': '#f9f9f9',
|
|
30
|
+
'--tri-color-background-inverse': '#ffffff',
|
|
31
|
+
'--tri-color-text-primary': '#000a23',
|
|
32
|
+
'--tri-color-text-secondary': '#000a23',
|
|
33
|
+
'--tri-color-text-tertiary': '#000a23',
|
|
34
|
+
'--tri-color-text-inverse': '#ffffff',
|
|
35
|
+
'--tri-color-text-accent': '#f07d19',
|
|
36
|
+
'--tri-color-state-default-primary': '#0052c2',
|
|
37
|
+
'--tri-color-state-default-secondary': '#d1e9fa',
|
|
38
|
+
'--tri-color-state-default-inverse': '#ffffff',
|
|
39
|
+
'--tri-color-state-default-neutral': '#616161',
|
|
40
|
+
'--tri-color-state-default-accent': '#f07d19',
|
|
41
|
+
'--tri-color-state-hover-primary': '#1f4b93',
|
|
42
|
+
'--tri-color-state-hover-secondary': '#bedff6',
|
|
43
|
+
'--tri-color-state-hover-tertiary': '#f9f9f9',
|
|
44
|
+
'--tri-color-state-hover-accent': '#e94f0f',
|
|
45
|
+
'--tri-color-state-pressed-primary': '#3179c4',
|
|
46
|
+
'--tri-color-state-pressed-secondary': '#e5f2fb',
|
|
47
|
+
'--tri-color-state-pressed-tertiary': '#bedff6',
|
|
48
|
+
'--tri-color-state-pressed-accent': '#f07d19',
|
|
49
|
+
'--tri-color-state-selected-primary': '#0052c2',
|
|
50
|
+
'--tri-color-state-selected-secondary': '#d1e9fa',
|
|
51
|
+
'--tri-color-state-selected-tertiary': '#e5f2fb',
|
|
52
|
+
'--tri-color-state-selected-inverse': '#ffffff',
|
|
53
|
+
'--tri-color-state-unselected-primary': '#616161',
|
|
54
|
+
'--tri-color-state-unselected-secondary': '#f5f5f5',
|
|
55
|
+
'--tri-color-state-unselected-inverse': '#ffffff',
|
|
56
|
+
'--tri-color-state-disabled-primary': '#707070',
|
|
57
|
+
'--tri-color-state-disabled-secondary': '#bdbdbd',
|
|
58
|
+
'--tri-color-state-disabled-tertiary': '#eaeaea',
|
|
59
|
+
'--tri-color-state-focus-ring': '#4098e3',
|
|
60
|
+
'--tri-font-hero':
|
|
61
|
+
'700 32px/40px "Connections Bold", Roboto, Lato, "Helvetica Bold", sans-serif',
|
|
62
|
+
'--tri-font-heading-xl':
|
|
63
|
+
'700 24px/32px "Connections Bold", Roboto, Lato, "Helvetica Bold", sans-serif',
|
|
64
|
+
'--tri-font-heading-l':
|
|
65
|
+
'700 20px/28px "Connections Bold", Roboto, Lato, "Helvetica Bold", sans-serif',
|
|
66
|
+
'--tri-font-heading-m':
|
|
67
|
+
'700 16px/24px "Connections Bold", Roboto, Lato, "Helvetica Bold", sans-serif',
|
|
68
|
+
'--tri-font-heading-s':
|
|
69
|
+
'700 14px/20px "Connections Bold", Roboto, Lato, "Helvetica Bold", sans-serif',
|
|
70
|
+
'--tri-font-heading-xs':
|
|
71
|
+
'700 12px/16px "Connections Bold", Roboto, Lato, "Helvetica Bold", sans-serif',
|
|
72
|
+
'--tri-font-body-l': '400 16px/24px Connections, Roboto, Lato, Helvetica, sans-serif',
|
|
73
|
+
'--tri-font-body-m': '400 14px/20px Connections, Roboto, Lato, Helvetica, sans-serif',
|
|
74
|
+
'--tri-font-body-s': '400 12px/16px Connections, Roboto, Lato, Helvetica, sans-serif',
|
|
75
|
+
'--tri-font-body-xs': '400 10px/12px Connections, Roboto, Lato, Helvetica, sans-serif',
|
|
76
|
+
'--tri-font-body-l-bold':
|
|
77
|
+
'700 16px/24px "Connections Bold", Roboto, Lato, "Helvetica Bold", sans-serif',
|
|
78
|
+
'--tri-font-body-m-bold':
|
|
79
|
+
'700 14px/20px "Connections Bold", Roboto, Lato, "Helvetica Bold", sans-serif',
|
|
80
|
+
'--tri-font-body-s-bold':
|
|
81
|
+
'700 12px/16px "Connections Bold", Roboto, Lato, "Helvetica Bold", sans-serif',
|
|
82
|
+
'--tri-font-body-xs-bold':
|
|
83
|
+
'700 10px/12px "Connections Bold", Roboto, Lato, "Helvetica Bold", sans-serif',
|
|
84
|
+
'--tri-font-family-175': '"Connections Bold", Roboto, Lato, "Helvetica Bold", sans-serif',
|
|
85
|
+
'--tri-font-family-100': 'Connections, Roboto, Lato, Helvetica, sans-serif',
|
|
86
|
+
'--tri-font-size-68': '10px',
|
|
87
|
+
'--tri-font-size-75': '12px',
|
|
88
|
+
'--tri-font-size-88': '14px',
|
|
89
|
+
'--tri-font-size-100': '16px',
|
|
90
|
+
'--tri-font-size-125': '20px',
|
|
91
|
+
'--tri-font-size-150': '24px',
|
|
92
|
+
'--tri-font-size-200': '32px',
|
|
93
|
+
'--tri-font-size-300': '48px',
|
|
94
|
+
'--tri-font-line-height-75': '12px',
|
|
95
|
+
'--tri-font-line-height-100': '16px',
|
|
96
|
+
'--tri-font-line-height-125': '20px',
|
|
97
|
+
'--tri-font-line-height-150': '24px',
|
|
98
|
+
'--tri-font-line-height-175': '28px',
|
|
99
|
+
'--tri-font-line-height-225': '32px',
|
|
100
|
+
'--tri-font-line-height-250': '40px',
|
|
101
|
+
'--tri-font-line-height-350': '56px',
|
|
102
|
+
'--tri-font-weight-100': '400',
|
|
103
|
+
'--tri-font-weight-175': '700',
|
|
104
|
+
'--tri-space-25': '2px',
|
|
105
|
+
'--tri-space-50': '4px',
|
|
106
|
+
'--tri-space-75': '6px',
|
|
107
|
+
'--tri-space-100': '8px',
|
|
108
|
+
'--tri-space-150': '12px',
|
|
109
|
+
'--tri-space-175': '14px',
|
|
110
|
+
'--tri-space-200': '16px',
|
|
111
|
+
'--tri-space-250': '20px',
|
|
112
|
+
'--tri-space-300': '24px',
|
|
113
|
+
'--tri-space-350': '28px',
|
|
114
|
+
'--tri-space-400': '32px',
|
|
115
|
+
'--tri-space-500': '40px',
|
|
116
|
+
'--tri-space-600': '48px',
|
|
117
|
+
'--tri-space-800': '64px',
|
|
118
|
+
'--tri-space-1100': '88px',
|
|
119
|
+
'--tri-space-1600': '128px',
|
|
120
|
+
'--tri-space-1800': '144px',
|
|
121
|
+
'--tri-space-2000': '160px',
|
|
122
|
+
'--tri-space-3000': '240px',
|
|
123
|
+
'--tri-space-4700': '375px',
|
|
124
|
+
'--tri-effect-border-radius-0': '0px',
|
|
125
|
+
'--tri-effect-border-radius-25': '2px',
|
|
126
|
+
'--tri-effect-border-radius-50': '4px',
|
|
127
|
+
'--tri-effect-border-radius-100': '8px',
|
|
128
|
+
'--tri-effect-border-radius-1000': '50%',
|
|
129
|
+
'--tri-effect-opacity-50': 'opacity(20%)',
|
|
130
|
+
'--tri-effect-opacity-100': 'opacity(40%)',
|
|
131
|
+
'--tri-effect-opacity-150': 'opacity(60%)',
|
|
132
|
+
'--tri-effect-border-primary': '1px solid #eaeaea',
|
|
133
|
+
'--tri-effect-border-secondary': '1px solid #e0e0e0',
|
|
134
|
+
'--tri-effect-border-tertiary': '1px solid #bdbdbd',
|
|
135
|
+
'--tri-effect-border-inverse': '1px solid #ffffff',
|
|
136
|
+
'--tri-effect-border-focus': '1px solid #4098e3',
|
|
137
|
+
'--tri-effect-border-primary-unselected': '1px solid #616161',
|
|
138
|
+
'--tri-effect-border-width-100': '1px',
|
|
139
|
+
'--tri-effect-border-width-200': '2px',
|
|
140
|
+
'--tri-animation-duration-50': '50ms',
|
|
141
|
+
'--tri-animation-duration-100': '100ms',
|
|
142
|
+
'--tri-animation-duration-150': '150ms',
|
|
143
|
+
'--tri-animation-duration-200': '200ms',
|
|
144
|
+
'--tri-animation-duration-250': '250ms',
|
|
145
|
+
'--tri-animation-duration-300': '300ms',
|
|
146
|
+
'--tri-animation-duration-350': '350ms',
|
|
147
|
+
'--tri-animation-duration-400': '400ms',
|
|
148
|
+
'--tri-animation-duration-450': '450ms',
|
|
149
|
+
'--tri-animation-duration-500': '500ms',
|
|
150
|
+
'--tri-animation-delay-50': '50ms',
|
|
151
|
+
'--tri-animation-delay-100': '100ms',
|
|
152
|
+
'--tri-animation-delay-150': '150ms',
|
|
153
|
+
'--tri-animation-delay-200': '200ms',
|
|
154
|
+
'--tri-animation-delay-250': '250ms',
|
|
155
|
+
'--tri-animation-delay-300': '300ms',
|
|
156
|
+
'--tri-animation-delay-350': '350ms',
|
|
157
|
+
'--tri-animation-delay-400': '400ms',
|
|
158
|
+
'--tri-animation-delay-450': '450ms',
|
|
159
|
+
'--tri-animation-delay-500': '500ms',
|
|
160
|
+
'--tri-animation-fade-default': '250ms',
|
|
161
|
+
'--tri-animation-fade-page': '350ms',
|
|
162
|
+
'--tri-animation-slide-default': '250ms',
|
|
163
|
+
'--tri-animation-slide-page': '350ms',
|
|
164
|
+
'--tri-animation-scale-default': '250ms',
|
|
165
|
+
'--tri-animation-scale-page': '350ms',
|
|
166
|
+
'--tri-animation-state-active': '150ms',
|
|
167
|
+
'--tri-animation-state-focus': '150ms',
|
|
168
|
+
'--tri-animation-state-hover': '150ms',
|
|
169
|
+
'--tri-animation-easing-ease-in': 'cubic-bezier(0.42, 0, 1, 1)',
|
|
170
|
+
'--tri-animation-easing-ease-in-out': 'cubic-bezier(0.42, 0, 0.58, 1)',
|
|
171
|
+
'--tri-animation-easing-linear': 'cubic-bezier(0, 0, 1, 1)',
|
|
172
|
+
'--tri-animation-easing-ease-out': 'cubic-bezier(0, 0, 0.58, 1)',
|
|
173
|
+
'--tri-animation-easing-ease': 'cubic-bezier(0.25, 0.1, 0.25, 1)',
|
|
174
|
+
'--tri-animation-transition-200': 'all 200ms linear',
|
|
175
|
+
'--tri-shadow-100': '0px 2px 1px 0px #0000001f, 0px 1px 3px 0px #00000005',
|
|
176
|
+
'--tri-shadow-200': '0px 3px 1px 0px #0000001f, 0px 1px 5px 0px #00000005',
|
|
177
|
+
'--tri-shadow-300': '0px 3px 3px 0px #0000001f, 0px 1px 8px 0px #00000005',
|
|
178
|
+
'--tri-shadow-400': '0px 1px 10px 0px #0000001f, 0px 2px 4px 0px #00000005',
|
|
179
|
+
'--tri-shadow-600': '0px 1px 18px 0px #0000001f, 0px 3px 5px 0px #00000005',
|
|
180
|
+
'--tri-shadow-800': '0px 3px 14px 0px #0000001f, 0px 5px 5px 0px #00000005',
|
|
181
|
+
'--tri-shadow-900': '0px 3px 16px 0px #0000001f, 0px 5px 6px 0px #00000005',
|
|
182
|
+
'--tri-shadow-1200': '0px 5px 22px 0px #0000001f, 0px 7px 8px 0px #00000005',
|
|
183
|
+
'--tri-shadow-1600': '0px 6px 30px 0px #0000001f, 0px 8px 10px 0px #00000005',
|
|
184
|
+
'--tri-shadow-2400': '0px 9px 46px 0px #0000001f, 0px 11px 15px 0px #00000005',
|
|
185
|
+
'--tri-shadow-focus': '0px 0px 0px 2px #ffffff, 0px 0px 0px 4px #4098e3',
|
|
186
|
+
'--tri-responsive-breakpoint-s': '576px',
|
|
187
|
+
'--tri-responsive-breakpoint-m': '768px',
|
|
188
|
+
'--tri-responsive-breakpoint-l': '992px',
|
|
189
|
+
'--tri-responsive-breakpoint-xl': '1200px',
|
|
190
|
+
'--tri-responsive-column-s': '8',
|
|
191
|
+
'--tri-responsive-column-m': '12',
|
|
192
|
+
'--tri-responsive-column-l': '12',
|
|
193
|
+
'--tri-responsive-column-xl': '12',
|
|
194
|
+
'--tri-responsive-grid-gutter-100': '16px',
|
|
195
|
+
'--tri-responsive-grid-margin-100': '24px',
|
|
196
|
+
'--tri-responsive-max-width-1000': '1632px'
|
|
197
|
+
}
|
|
198
|
+
};
|