@equinor/cpl-theme-react 0.0.7 → 0.0.8
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/dist/index.css +28 -25
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
--eds_ui_background__info: rgba(213, 234, 244, 1);
|
|
13
13
|
--eds_ui_background__warning: rgba(255, 231, 214, 1);
|
|
14
14
|
--eds_ui_background__danger: rgba(255, 193, 193, 1);
|
|
15
|
+
|
|
15
16
|
--eds_infographic_substitute__purple_berry: rgba(140, 17, 89, 1);
|
|
16
17
|
--eds_infographic_substitute__pink_rose: rgba(226, 73, 115, 1);
|
|
17
18
|
--eds_infographic_substitute__pink_salmon: rgba(255, 146, 168, 1);
|
|
@@ -36,6 +37,7 @@
|
|
|
36
37
|
--eds_infographic_primary__spruce_wood: rgba(255, 231, 214, 1);
|
|
37
38
|
--eds_infographic_primary__mist_blue: rgba(213, 234, 244, 1);
|
|
38
39
|
--eds_infographic_primary__lichen_green: rgba(230, 250, 236, 1);
|
|
40
|
+
|
|
39
41
|
--eds_logo__fill_positive: rgba(235, 0, 55, 1);
|
|
40
42
|
--eds_logo__fill_negative: rgba(255, 255, 255, 1);
|
|
41
43
|
--eds_interactive_primary__selected_highlight: rgba(230, 250, 236, 1);
|
|
@@ -138,30 +140,31 @@
|
|
|
138
140
|
--eds_ui_background__warning: rgba(0, 24, 41, 1);
|
|
139
141
|
--eds_ui_background__danger: rgba(0, 62, 62, 1);
|
|
140
142
|
|
|
141
|
-
|
|
142
|
-
--
|
|
143
|
-
--
|
|
144
|
-
--
|
|
145
|
-
--
|
|
146
|
-
--
|
|
147
|
-
--
|
|
148
|
-
--
|
|
149
|
-
--
|
|
150
|
-
--
|
|
151
|
-
--
|
|
152
|
-
--
|
|
153
|
-
--
|
|
154
|
-
--
|
|
155
|
-
--
|
|
156
|
-
--
|
|
157
|
-
--
|
|
158
|
-
--
|
|
159
|
-
--
|
|
160
|
-
--
|
|
161
|
-
--
|
|
162
|
-
--
|
|
163
|
-
--
|
|
164
|
-
--
|
|
143
|
+
/** keeping the infographic colors the same as light mode for now */
|
|
144
|
+
--eds_infographic_substitute__purple_berry: rgba(140, 17, 89, 1);
|
|
145
|
+
--eds_infographic_substitute__pink_rose: rgba(226, 73, 115, 1);
|
|
146
|
+
--eds_infographic_substitute__pink_salmon: rgba(255, 146, 168, 1);
|
|
147
|
+
--eds_infographic_substitute__green_cucumber: rgba(0, 95, 87, 1);
|
|
148
|
+
--eds_infographic_substitute__green_succulent: rgba(0, 151, 123, 1);
|
|
149
|
+
--eds_infographic_substitute__green_mint: rgba(64, 211, 143, 1);
|
|
150
|
+
--eds_infographic_substitute__blue_ocean: rgba(0, 64, 136, 1);
|
|
151
|
+
--eds_infographic_substitute__blue_overcast: rgba(0, 132, 196, 1);
|
|
152
|
+
--eds_infographic_substitute__blue_sky: rgba(82, 192, 255, 1);
|
|
153
|
+
--eds_infographic_primary__moss_green_100: rgba(0, 112, 121, 1);
|
|
154
|
+
--eds_infographic_primary__moss_green_55: rgba(115, 177, 181, 1);
|
|
155
|
+
--eds_infographic_primary__moss_green_34: rgba(168, 206, 209, 1);
|
|
156
|
+
--eds_infographic_primary__moss_green_21: rgba(201, 224, 226, 1);
|
|
157
|
+
--eds_infographic_primary__moss_green_13: rgba(222, 237, 238, 1);
|
|
158
|
+
--eds_infographic_primary__energy_red_100: rgba(235, 0, 55, 1);
|
|
159
|
+
--eds_infographic_primary__energy_red_55: rgba(255, 125, 152, 1);
|
|
160
|
+
--eds_infographic_primary__energy_red_34: rgba(255, 174, 191, 1);
|
|
161
|
+
--eds_infographic_primary__energy_red_21: rgba(255, 205, 215, 1);
|
|
162
|
+
--eds_infographic_primary__energy_red_13: rgba(255, 224, 231, 1);
|
|
163
|
+
--eds_infographic_primary__weathered_red: rgba(125, 0, 35, 1);
|
|
164
|
+
--eds_infographic_primary__slate_blue: rgba(36, 55, 70, 1);
|
|
165
|
+
--eds_infographic_primary__spruce_wood: rgba(255, 231, 214, 1);
|
|
166
|
+
--eds_infographic_primary__mist_blue: rgba(213, 234, 244, 1);
|
|
167
|
+
--eds_infographic_primary__lichen_green: rgba(230, 250, 236, 1);
|
|
165
168
|
|
|
166
169
|
--eds_logo__fill_positive: rgba(20, 255, 200, 1);
|
|
167
170
|
--eds_logo__fill_negative: rgba(0, 0, 0, 1);
|
|
@@ -192,7 +195,7 @@
|
|
|
192
195
|
--eds_interactive__disabled__border: rgba(64, 84, 98, 1); /* updated*/
|
|
193
196
|
--eds_interactive__disabled__fill: rgba(21, 21, 21, 1);
|
|
194
197
|
--eds_interactive__link_on_interactive_colors: rgba(0, 0, 0, 1);
|
|
195
|
-
--eds_interactive__icon_on_interactive_colors: rgba(
|
|
198
|
+
--eds_interactive__icon_on_interactive_colors: rgba(255,255,255,1); /*updated*/
|
|
196
199
|
--eds_interactive__link_in_snackbars: rgba(151, 202, 206, 1); /* updated */
|
|
197
200
|
--eds_interactive__pressed_overlay_dark: rgba(255, 255, 255, 0.8);
|
|
198
201
|
--eds_interactive__pressed_overlay_light: rgba(0, 0, 0, 0.8);
|