@indico-data/design-system 2.55.1 → 2.56.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.
- package/lib/index.css +179 -78
- package/lib/index.esm.css +179 -78
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +4 -4
- package/src/components/floatUI/FloatUI.stories.tsx +7 -4
- package/src/components/forms/date/datePicker/DatePicker.tsx +2 -2
- package/src/components/menu/Menu.stories.tsx +14 -1
- package/src/components/menu/styles/Menu.scss +11 -0
- package/src/styles/variables/themes/dark.scss +19 -0
- package/src/styles/variables/themes/light.scss +178 -88
- package/plugin-build-tool.json +0 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@indico-data/design-system",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.56.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -164,9 +164,9 @@
|
|
|
164
164
|
"yarn": "4.0.2"
|
|
165
165
|
},
|
|
166
166
|
"peerDependencies": {
|
|
167
|
-
"@fortawesome/fontawesome-svg-core": "^6.
|
|
168
|
-
"@fortawesome/free-regular-svg-icons": "^6.
|
|
169
|
-
"@fortawesome/free-solid-svg-icons": "^6.
|
|
167
|
+
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
|
168
|
+
"@fortawesome/free-regular-svg-icons": "^6.7.2",
|
|
169
|
+
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
|
170
170
|
"@fortawesome/react-fontawesome": "^0.2.2",
|
|
171
171
|
"react": "^18.2.0",
|
|
172
172
|
"react-dom": "^18.2.0",
|
|
@@ -10,7 +10,7 @@ const meta: Meta<typeof FloatUI> = {
|
|
|
10
10
|
component: FloatUI,
|
|
11
11
|
argTypes: {
|
|
12
12
|
children: {
|
|
13
|
-
control:
|
|
13
|
+
control: false,
|
|
14
14
|
description:
|
|
15
15
|
'An array of exactly two elements: the first element is the trigger that opens the FloatUI, and the second element is the content displayed within the FloatUI.',
|
|
16
16
|
table: {
|
|
@@ -31,7 +31,7 @@ const meta: Meta<typeof FloatUI> = {
|
|
|
31
31
|
},
|
|
32
32
|
},
|
|
33
33
|
floatingOptions: {
|
|
34
|
-
control:
|
|
34
|
+
control: false,
|
|
35
35
|
description:
|
|
36
36
|
'Options for configuring the floating UI behavior. For more, see the [floating-ui docs](https://floating-ui.com/docs/useFloating#options).',
|
|
37
37
|
table: {
|
|
@@ -52,7 +52,7 @@ const meta: Meta<typeof FloatUI> = {
|
|
|
52
52
|
},
|
|
53
53
|
},
|
|
54
54
|
isPortal: {
|
|
55
|
-
control:
|
|
55
|
+
control: false,
|
|
56
56
|
defaultValue: false,
|
|
57
57
|
description:
|
|
58
58
|
'Controls whether the FloatUI content is rendered as a portal (i.e. rendered outside the app root and into the body)',
|
|
@@ -64,7 +64,7 @@ const meta: Meta<typeof FloatUI> = {
|
|
|
64
64
|
},
|
|
65
65
|
},
|
|
66
66
|
portalOptions: {
|
|
67
|
-
control:
|
|
67
|
+
control: false,
|
|
68
68
|
description:
|
|
69
69
|
'Options for configuring the portal behavior. Includes the rootId, which is the id of the root element to render the portal into.',
|
|
70
70
|
table: {
|
|
@@ -103,6 +103,9 @@ export default meta;
|
|
|
103
103
|
type Story = StoryObj<FloatUIProps>;
|
|
104
104
|
|
|
105
105
|
export const Uncontrolled: Story = {
|
|
106
|
+
args: {
|
|
107
|
+
ariaLabel: 'Example FloatUI',
|
|
108
|
+
},
|
|
106
109
|
render: (args) => (
|
|
107
110
|
<FloatUI {...args} ariaLabel="Example FloatUI">
|
|
108
111
|
<Button iconLeft="kabob" ariaLabel="Toggle FloatUI" variant="action" />
|
|
@@ -82,7 +82,7 @@ export const DatePicker = (props: DatePickerProps) => {
|
|
|
82
82
|
const finalProps = { ...commonProps, ...rest, ...modeProps };
|
|
83
83
|
|
|
84
84
|
return (
|
|
85
|
-
|
|
85
|
+
<div className="date-picker-wrapper">
|
|
86
86
|
{hasTimePicker && (
|
|
87
87
|
<div className="time-picker-wrapper">
|
|
88
88
|
<Row align="center">
|
|
@@ -96,6 +96,6 @@ export const DatePicker = (props: DatePickerProps) => {
|
|
|
96
96
|
</div>
|
|
97
97
|
)}
|
|
98
98
|
<DayPicker {...finalProps} />
|
|
99
|
-
|
|
99
|
+
</div>
|
|
100
100
|
);
|
|
101
101
|
};
|
|
@@ -6,8 +6,18 @@ const meta: Meta<typeof Menu> = {
|
|
|
6
6
|
title: 'Components/Menu',
|
|
7
7
|
component: Menu,
|
|
8
8
|
argTypes: {
|
|
9
|
-
|
|
9
|
+
className: {
|
|
10
10
|
control: 'text',
|
|
11
|
+
description: 'The class name to apply to the Menu component.',
|
|
12
|
+
table: {
|
|
13
|
+
category: 'Props',
|
|
14
|
+
type: {
|
|
15
|
+
summary: 'string',
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
children: {
|
|
20
|
+
control: false,
|
|
11
21
|
description:
|
|
12
22
|
'The children of the Menu component, which will be automatically styled as menu-items.',
|
|
13
23
|
table: {
|
|
@@ -25,6 +35,9 @@ export default meta;
|
|
|
25
35
|
type Story = StoryObj<MenuProps>;
|
|
26
36
|
|
|
27
37
|
export const Default: Story = {
|
|
38
|
+
args: {
|
|
39
|
+
className: 'custom-menu',
|
|
40
|
+
},
|
|
28
41
|
render: (args) => (
|
|
29
42
|
<Menu {...args}>
|
|
30
43
|
<Button
|
|
@@ -11,6 +11,17 @@
|
|
|
11
11
|
width: 100%;
|
|
12
12
|
text-align: left;
|
|
13
13
|
border: none;
|
|
14
|
+
border-radius: 0;
|
|
15
|
+
|
|
16
|
+
&:first-child {
|
|
17
|
+
border-top-left-radius: var(--pf-menu-rounded);
|
|
18
|
+
border-top-right-radius: var(--pf-menu-rounded);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&:last-child {
|
|
22
|
+
border-bottom-left-radius: var(--pf-menu-rounded);
|
|
23
|
+
border-bottom-right-radius: var(--pf-menu-rounded);
|
|
24
|
+
}
|
|
14
25
|
|
|
15
26
|
&:hover {
|
|
16
27
|
background: var(--pf-menu-item-hover-color);
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
--pf-gray-color-700: #262626;
|
|
62
62
|
--pf-gray-color-800: #171717;
|
|
63
63
|
--pf-gray-color-900: #0a0a0a;
|
|
64
|
+
--pf-gray-color-950: #000000; // MISSING
|
|
64
65
|
|
|
65
66
|
//Red color
|
|
66
67
|
--pf-red-color: #ce6068;
|
|
@@ -71,6 +72,7 @@
|
|
|
71
72
|
--pf-red-color-300: #ebb6b8;
|
|
72
73
|
--pf-red-color-350: #f39bb9;
|
|
73
74
|
--pf-red-color-400: #ef76a0;
|
|
75
|
+
--pf-red-color-450: #df8d91;
|
|
74
76
|
--pf-red-color-500: #ce6068;
|
|
75
77
|
--pf-red-color-600: #b94553;
|
|
76
78
|
--pf-red-color-700: #9b3544;
|
|
@@ -156,6 +158,23 @@
|
|
|
156
158
|
--pf-white-color-90: rgba(255, 255, 255, 0.9);
|
|
157
159
|
--pf-white-color-100: rgba(255, 255, 255, 1);
|
|
158
160
|
|
|
161
|
+
// Black color
|
|
162
|
+
--pf-black-color: #000000;
|
|
163
|
+
--pf-black-color-1: rgba(0, 0, 0, 0.01);
|
|
164
|
+
--pf-black-color-3: rgba(0, 0, 0, 0.03);
|
|
165
|
+
--pf-black-color-5: rgba(0, 0, 0, 0.05);
|
|
166
|
+
--pf-black-color-10: rgba(0, 0, 0, 0.1);
|
|
167
|
+
--pf-black-color-15: rgba(0, 0, 0, 0.15);
|
|
168
|
+
--pf-black-color-20: rgba(0, 0, 0, 0.2);
|
|
169
|
+
--pf-black-color-30: rgba(0, 0, 0, 0.3);
|
|
170
|
+
--pf-black-color-40: rgba(0, 0, 0, 0.4);
|
|
171
|
+
--pf-black-color-50: rgba(0, 0, 0, 0.5);
|
|
172
|
+
--pf-black-color-60: rgba(0, 0, 0, 0.6);
|
|
173
|
+
--pf-black-color-70: rgba(0, 0, 0, 0.7);
|
|
174
|
+
--pf-black-color-80: rgba(0, 0, 0, 0.8);
|
|
175
|
+
--pf-black-color-90: rgba(0, 0, 0, 0.9);
|
|
176
|
+
--pf-black-color-100: rgba(0, 0, 0, 1);
|
|
177
|
+
|
|
159
178
|
// Utility Colors
|
|
160
179
|
--pf-error-color: var(--pf-red-color);
|
|
161
180
|
--pf-success-color: var(--pf-green-color);
|
|
@@ -1,98 +1,188 @@
|
|
|
1
1
|
:root [data-theme='light'] {
|
|
2
2
|
// Primary Color
|
|
3
|
-
--pf-primary-color: #
|
|
4
|
-
|
|
5
|
-
--pf-primary-color-
|
|
6
|
-
--pf-primary-color-
|
|
7
|
-
--pf-primary-color-
|
|
8
|
-
--pf-primary-color-
|
|
9
|
-
--pf-primary-color-
|
|
10
|
-
--pf-primary-color-
|
|
11
|
-
--pf-primary-color-
|
|
12
|
-
--pf-primary-color-
|
|
13
|
-
--pf-primary-color-
|
|
14
|
-
--pf-primary-color-
|
|
3
|
+
--pf-primary-color: #b4cadf;
|
|
4
|
+
|
|
5
|
+
--pf-primary-color-50: #5b8ab7;
|
|
6
|
+
--pf-primary-color-100: #6d96c3;
|
|
7
|
+
--pf-primary-color-200: #7b9fc5;
|
|
8
|
+
--pf-primary-color-300: #90adc8;
|
|
9
|
+
--pf-primary-color-400: #a3bdd4;
|
|
10
|
+
--pf-primary-color-500: #b4cadf;
|
|
11
|
+
--pf-primary-color-600: #c4d8eb;
|
|
12
|
+
--pf-primary-color-700: #d2e1f0;
|
|
13
|
+
--pf-primary-color-800: #dfeaf3;
|
|
14
|
+
--pf-primary-color-900: #eef4fa;
|
|
15
|
+
--pf-primary-color-950: #f6f9fc;
|
|
15
16
|
|
|
16
17
|
// Secondary Color
|
|
17
|
-
--pf-secondary-color: #
|
|
18
|
-
--pf-secondary-color-100: #dceafd;
|
|
19
|
-
--pf-secondary-color-200: #b3d4fc;
|
|
20
|
-
--pf-secondary-color-300: #7ab5fa;
|
|
21
|
-
--pf-secondary-color-400: #4797f5;
|
|
22
|
-
--pf-secondary-color-500: #0070f5;
|
|
23
|
-
--pf-secondary-color-600: #0067e1;
|
|
24
|
-
--pf-secondary-color-700: #005ac4;
|
|
25
|
-
--pf-secondary-color-800: #004eac;
|
|
26
|
-
--pf-secondary-color-900: #004393;
|
|
27
|
-
|
|
28
|
-
//Gray Color
|
|
29
|
-
--pf-gray-color: #444444;
|
|
30
|
-
|
|
31
|
-
--pf-gray-color-100: #eeeeee;
|
|
32
|
-
--pf-gray-color-200: #d0d0d0;
|
|
33
|
-
--pf-gray-color-300: #a9a9a9;
|
|
34
|
-
--pf-gray-color-400: #737373;
|
|
35
|
-
--pf-gray-color-500: #444444;
|
|
36
|
-
--pf-gray-color-600: #373737;
|
|
37
|
-
--pf-gray-color-700: #2c2c2c;
|
|
38
|
-
--pf-gray-color-800: #1f1f1f;
|
|
39
|
-
--pf-gray-color-900: #141414;
|
|
40
|
-
|
|
41
|
-
// Steel Color
|
|
42
|
-
--pf-steel-color: #7c8594;
|
|
43
|
-
|
|
44
|
-
--pf-steel-color-100: #f4f6f8;
|
|
45
|
-
--pf-steel-color-200: #d9dee5;
|
|
46
|
-
--pf-steel-color-300: #bcc3cd;
|
|
47
|
-
--pf-steel-color-400: #a0a9b5;
|
|
48
|
-
--pf-steel-color-500: #7c8594;
|
|
49
|
-
--pf-steel-color-600: #5f697a;
|
|
50
|
-
--pf-steel-color-700: #454e5e;
|
|
51
|
-
--pf-steel-color-800: #2d3444;
|
|
52
|
-
--pf-steel-color-900: #1b202c;
|
|
53
|
-
|
|
54
|
-
//Green Color *do success warning etc etc
|
|
55
|
-
--pf-green-color: #008a00;
|
|
56
|
-
--pf-green-color-100: #d6ecd6;
|
|
57
|
-
--pf-green-color-200: #99d099;
|
|
58
|
-
--pf-green-color-300: #66b966;
|
|
59
|
-
--pf-green-color-400: #33a133;
|
|
60
|
-
--pf-green-color-500: #008a00;
|
|
61
|
-
--pf-green-color-600: #007c00;
|
|
62
|
-
--pf-green-color-700: #006e00;
|
|
63
|
-
--pf-green-color-800: #006100;
|
|
64
|
-
--pf-green-color-900: #005300;
|
|
18
|
+
--pf-secondary-color: #3892f3;
|
|
65
19
|
|
|
66
|
-
|
|
67
|
-
--pf-
|
|
68
|
-
--pf-
|
|
69
|
-
--pf-
|
|
70
|
-
--pf-
|
|
71
|
-
--pf-
|
|
72
|
-
--pf-
|
|
73
|
-
--pf-
|
|
74
|
-
--pf-
|
|
75
|
-
--pf-
|
|
76
|
-
--pf-
|
|
20
|
+
--pf-secondary-color-50: #002b66;
|
|
21
|
+
--pf-secondary-color-100: #003b8c;
|
|
22
|
+
--pf-secondary-color-200: #004cb0;
|
|
23
|
+
--pf-secondary-color-300: #0060d6;
|
|
24
|
+
--pf-secondary-color-400: #0070f5;
|
|
25
|
+
--pf-secondary-color-500: #3892f3;
|
|
26
|
+
--pf-secondary-color-550: #66adff;
|
|
27
|
+
--pf-secondary-color-600: #91c5ff;
|
|
28
|
+
--pf-secondary-color-700: #b8dbff;
|
|
29
|
+
--pf-secondary-color-800: #d4eaff;
|
|
30
|
+
--pf-secondary-color-900: #e0f2ff;
|
|
31
|
+
--pf-secondary-color-950: #eaf4ff;
|
|
32
|
+
|
|
33
|
+
// Tertiary Color
|
|
34
|
+
--pf-tertiary-color: #8394a9;
|
|
35
|
+
|
|
36
|
+
--pf-tertiary-color-50: #142838;
|
|
37
|
+
--pf-tertiary-color-100: #203148;
|
|
38
|
+
--pf-tertiary-color-200: #2e4563;
|
|
39
|
+
--pf-tertiary-color-300: #3e587a;
|
|
40
|
+
--pf-tertiary-color-400: #55677f;
|
|
41
|
+
--pf-tertiary-color-450: #6d8097;
|
|
42
|
+
--pf-tertiary-color-500: #8394a9;
|
|
43
|
+
--pf-tertiary-color-600: #93a3bb;
|
|
44
|
+
--pf-tertiary-color-700: #a5b4c6;
|
|
45
|
+
--pf-tertiary-color-800: #b2bfd0;
|
|
46
|
+
--pf-tertiary-color-900: #c4ccd7;
|
|
47
|
+
--pf-tertiary-color-950: #d6dde5;
|
|
48
|
+
|
|
49
|
+
// Gray Color
|
|
50
|
+
--pf-gray-color: #525252;
|
|
51
|
+
|
|
52
|
+
--pf-gray-color-50: #0a0a0a;
|
|
53
|
+
--pf-gray-color-100: #171717;
|
|
54
|
+
--pf-gray-color-200: #262626;
|
|
55
|
+
--pf-gray-color-300: #404040;
|
|
56
|
+
--pf-gray-color-400: #525252;
|
|
57
|
+
--pf-gray-color-450: #737373; // MISSING
|
|
58
|
+
--pf-gray-color-500: #737373;
|
|
59
|
+
--pf-gray-color-600: #989898;
|
|
60
|
+
--pf-gray-color-700: #bdbdbd;
|
|
61
|
+
--pf-gray-color-800: #dcdcdc;
|
|
62
|
+
--pf-gray-color-900: #efefef;
|
|
63
|
+
--pf-gray-color-950: #f6f6f6;
|
|
77
64
|
|
|
78
65
|
//Red color
|
|
79
|
-
--pf-red-color: #
|
|
80
|
-
|
|
81
|
-
--pf-red-color-
|
|
82
|
-
--pf-red-color-
|
|
83
|
-
--pf-red-color-
|
|
84
|
-
--pf-red-color-
|
|
85
|
-
--pf-red-color-
|
|
86
|
-
--pf-red-color-
|
|
87
|
-
--pf-red-color-
|
|
88
|
-
--pf-red-color-
|
|
66
|
+
--pf-red-color: #f4a5ae;
|
|
67
|
+
|
|
68
|
+
--pf-red-color-50: #5b0d16;
|
|
69
|
+
--pf-red-color-100: #761821;
|
|
70
|
+
--pf-red-color-200: #8f252f;
|
|
71
|
+
--pf-red-color-300: #ad303d;
|
|
72
|
+
--pf-red-color-350: #b8424c;
|
|
73
|
+
--pf-red-color-400: #c84a57;
|
|
74
|
+
--pf-red-color-450: #dc5a66;
|
|
75
|
+
--pf-red-color-500: #f4a5ae;
|
|
76
|
+
--pf-red-color-600: #ebb6b8;
|
|
77
|
+
--pf-red-color-700: #f9d5dc;
|
|
78
|
+
--pf-red-color-800: #f4d7d8;
|
|
79
|
+
--pf-red-color-850: #fae9e9;
|
|
80
|
+
--pf-red-color-900: #fcebeb;
|
|
81
|
+
--pf-red-color-950: #fcf5f4;
|
|
82
|
+
|
|
83
|
+
//Orange color
|
|
84
|
+
--pf-orange-color: #ff873f;
|
|
85
|
+
|
|
86
|
+
--pf-orange-color-50: #721e01;
|
|
87
|
+
--pf-orange-color-100: #992702;
|
|
88
|
+
--pf-orange-color-200: #b33403;
|
|
89
|
+
--pf-orange-color-300: #d94b04;
|
|
90
|
+
--pf-orange-color-400: #f25c05;
|
|
91
|
+
--pf-orange-color-500: #ff873f;
|
|
92
|
+
--pf-orange-color-600: #ffa26d;
|
|
93
|
+
--pf-orange-color-700: #ffc9aa;
|
|
94
|
+
--pf-orange-color-800: #ffe3d1;
|
|
95
|
+
--pf-orange-color-900: #fff3ec;
|
|
96
|
+
--pf-orange-color-950: #fffaf7;
|
|
97
|
+
|
|
98
|
+
//Yellow color
|
|
99
|
+
--pf-yellow-color: #ffa400;
|
|
100
|
+
|
|
101
|
+
--pf-yellow-color-50: #312602;
|
|
102
|
+
--pf-yellow-color-100: #664200;
|
|
103
|
+
--pf-yellow-color-200: #895c00;
|
|
104
|
+
--pf-yellow-color-300: #b37300;
|
|
105
|
+
--pf-yellow-color-400: #e08e00;
|
|
106
|
+
--pf-yellow-color-500: #ffa400;
|
|
107
|
+
--pf-yellow-color-600: #ffb621;
|
|
108
|
+
--pf-yellow-color-700: #ffc344;
|
|
109
|
+
--pf-yellow-color-800: #ffd369;
|
|
110
|
+
--pf-yellow-color-900: #ffeaa1;
|
|
111
|
+
--pf-yellow-color-950: #fff4d0;
|
|
112
|
+
|
|
113
|
+
//Green Color
|
|
114
|
+
--pf-green-color: #39c29d;
|
|
115
|
+
|
|
116
|
+
--pf-green-color-50: #003325;
|
|
117
|
+
--pf-green-color-100: #075f48;
|
|
118
|
+
--pf-green-color-200: #0a906c;
|
|
119
|
+
--pf-green-color-300: #03aaaa;
|
|
120
|
+
--pf-green-color-400: #26b890;
|
|
121
|
+
--pf-green-color-500: #39c29d;
|
|
122
|
+
--pf-green-color-600: #52ccae;
|
|
123
|
+
--pf-green-color-700: #6cd6ba;
|
|
124
|
+
--pf-green-color-800: #83e2c7;
|
|
125
|
+
--pf-green-color-900: #c1f1e2;
|
|
126
|
+
--pf-green-color-950: #83e2c7;
|
|
127
|
+
|
|
128
|
+
// Purple Color
|
|
129
|
+
--pf-purple-color: #9776d3;
|
|
130
|
+
|
|
131
|
+
--pf-purple-color-50: #291a40;
|
|
132
|
+
--pf-purple-color-100: #55377b;
|
|
133
|
+
--pf-purple-color-200: #664196;
|
|
134
|
+
--pf-purple-color-300: #7a4eb3;
|
|
135
|
+
--pf-purple-color-400: #8b60c7;
|
|
136
|
+
--pf-purple-color-500: #9776d3;
|
|
137
|
+
--pf-purple-color-600: #b6a3e2;
|
|
138
|
+
--pf-purple-color-700: #cfc4ee;
|
|
139
|
+
--pf-purple-color-800: #e4dff5;
|
|
140
|
+
--pf-purple-color-900: #f1edfa;
|
|
141
|
+
--pf-purple-color-950: #f7f6fc;
|
|
142
|
+
|
|
143
|
+
// White color
|
|
144
|
+
--pf-white-color: #ffffff;
|
|
145
|
+
--pf-white-color-1: rgba(255, 255, 255, 0.01);
|
|
146
|
+
--pf-white-color-3: rgba(255, 255, 255, 0.03);
|
|
147
|
+
--pf-white-color-5: rgba(255, 255, 255, 0.05);
|
|
148
|
+
--pf-white-color-10: rgba(255, 255, 255, 0.1);
|
|
149
|
+
--pf-white-color-15: rgba(255, 255, 255, 0.15);
|
|
150
|
+
--pf-white-color-20: rgba(255, 255, 255, 0.2);
|
|
151
|
+
--pf-white-color-30: rgba(255, 255, 255, 0.3);
|
|
152
|
+
--pf-white-color-40: rgba(255, 255, 255, 0.4);
|
|
153
|
+
--pf-white-color-50: rgba(255, 255, 255, 0.5);
|
|
154
|
+
--pf-white-color-60: rgba(255, 255, 255, 0.6);
|
|
155
|
+
--pf-white-color-70: rgba(255, 255, 255, 0.7);
|
|
156
|
+
--pf-white-color-80: rgba(255, 255, 255, 0.8);
|
|
157
|
+
--pf-white-color-90: rgba(255, 255, 255, 0.9);
|
|
158
|
+
--pf-white-color-100: rgba(255, 255, 255, 1);
|
|
159
|
+
|
|
160
|
+
// Black color
|
|
161
|
+
--pf-black-color: #000000;
|
|
162
|
+
--pf-black-color-1: rgba(0, 0, 0, 0.01);
|
|
163
|
+
--pf-black-color-3: rgba(0, 0, 0, 0.03);
|
|
164
|
+
--pf-black-color-5: rgba(0, 0, 0, 0.05);
|
|
165
|
+
--pf-black-color-10: rgba(0, 0, 0, 0.1);
|
|
166
|
+
--pf-black-color-15: rgba(0, 0, 0, 0.15);
|
|
167
|
+
--pf-black-color-20: rgba(0, 0, 0, 0.2);
|
|
168
|
+
--pf-black-color-30: rgba(0, 0, 0, 0.3);
|
|
169
|
+
--pf-black-color-40: rgba(0, 0, 0, 0.4);
|
|
170
|
+
--pf-black-color-50: rgba(0, 0, 0, 0.5);
|
|
171
|
+
--pf-black-color-60: rgba(0, 0, 0, 0.6);
|
|
172
|
+
--pf-black-color-70: rgba(0, 0, 0, 0.7);
|
|
173
|
+
--pf-black-color-80: rgba(0, 0, 0, 0.8);
|
|
174
|
+
--pf-black-color-90: rgba(0, 0, 0, 0.9);
|
|
175
|
+
--pf-black-color-100: rgba(0, 0, 0, 1);
|
|
89
176
|
|
|
90
177
|
// Utility Colors
|
|
91
|
-
--pf-error-color: var(--pf-red-color
|
|
92
|
-
--pf-success-color: var(--pf-green-color
|
|
93
|
-
--pf-warning-color: var(--pf-
|
|
94
|
-
--pf-neutral-color: var(--pf-gray-color);
|
|
95
|
-
--pf-info-color: var(--pf-secondary-color-
|
|
96
|
-
--pf-
|
|
97
|
-
--pf-
|
|
178
|
+
--pf-error-color: var(--pf-red-color);
|
|
179
|
+
--pf-success-color: var(--pf-green-color);
|
|
180
|
+
--pf-warning-color: var(--pf-yellow-color-300);
|
|
181
|
+
--pf-neutral-color: var(--pf-gray-color-100);
|
|
182
|
+
--pf-info-color: var(--pf-secondary-color-200);
|
|
183
|
+
--pf-brand-color: var(--pf-secondary-color-550);
|
|
184
|
+
--pf-pending-color: var(--pf-red-color-900);
|
|
185
|
+
|
|
186
|
+
--pf-link-color: var(--pf-gray-color-300);
|
|
187
|
+
--pf-link-hover-color: var(--pf-gray-color-100);
|
|
98
188
|
}
|
package/plugin-build-tool.json
DELETED