@digigov/css 0.29.8 → 0.29.10-dark-beta

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.
@@ -1,68 +0,0 @@
1
- module.exports = {
2
- name: 'dark',
3
- colors: {
4
- "primary": "#003375",
5
- "primary-focus": "#004594",
6
- "primary200": "#002152",
7
-
8
- "secondary50": "#4dd5ff",
9
- "secondary200": "#00b0f0",
10
- "secondary": "#00b0f0",
11
- "secondary-focus": "#0081d6",
12
- "secondary400": "#0081d6",
13
- "secondary600": "#0065b3",
14
- "secondary800": "#004594",
15
-
16
- "content-dark": "#fff",
17
- "content": "#212930",
18
- "content-secondary":"#56565d",
19
-
20
- "accent": "#212930", /* Accent sets the color for user-interface controls generated by some elements (checkbox, radio, range input, progress tag).*/
21
- "accent-focus": "#2aa79b",
22
- "accent-content": "#fff",
23
- "neutral": "#43454c",
24
- "neutral-focus": "#31363f",
25
- "neutral-content": "#fff",
26
-
27
- "base100": "#56565d",
28
- "base150": "#99989a",
29
- "base200": "#b3b2b3",
30
- "base300": "#ebebeb",
31
- "base300-content": "#fff",
32
- "base-content": "#fff",
33
- "base-content-secondary": "#56565d",
34
- "base-content-invert": "#1B2127",
35
-
36
- "info": "#00b0f0",
37
- "success": "#07CA4D",
38
- "success-hover": "#118f1e",
39
- "warning": "#f90",
40
- "error": "#FF3838",
41
- "error-hover": "#B60202",
42
- "focus": "#fd0",
43
- "link": "#00b0f0",
44
- "link-hover": "#0081d6",
45
- "link-visited": "#9772FD",
46
- "link-active": "#0065b3",
47
-
48
- "white": "#1B2127",
49
- "gray50": "#212930",
50
- "gray100": "#31363f",
51
- "gray200": "#43454c",
52
- "base-bg": "#43454c",
53
- "gray300": "#56565d",
54
- "gray400": "#6c6a71",
55
- "gray500": "#828085",
56
- "gray600": "#99989a",
57
- "gray700": "#b3b2b3",
58
- "gray800": "#ccc",
59
- "gray900": "#ebebeb",
60
- "black": "#fff",
61
-
62
- "shadow200" : "#21293033",
63
- "shadow600" :"#21293099",
64
- }
65
-
66
- }
67
-
68
-
package/colors/index.js DELETED
@@ -1,17 +0,0 @@
1
- const colorValuesLight = require('./color-values.light');
2
- const colorValuesDark = require('./color-values.dark');
3
- const themeObject = {};
4
- const themes = [ colorValuesLight, colorValuesDark];
5
-
6
- themes.forEach((theme)=> {
7
- const colorObject = {
8
- "transparent": "transparent",
9
- "current": "currentColor",
10
- }
11
- for (const [key, value] of Object.entries(theme.colors)) {
12
- colorObject[key] = value.startsWith('#')?value:value.startsWith('rgb')?value:`hsl(${value})`
13
- }
14
- themeObject[theme.name] = colorObject;
15
- })
16
-
17
- module.exports = {...themeObject};