-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path_color-tokens.js
More file actions
50 lines (50 loc) · 748 Bytes
/
_color-tokens.js
File metadata and controls
50 lines (50 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module.exports = [
{
name: "primary",
color: "#ab79d6",
},
{
name: "secondary",
color: "#d367c1",
onColor: false,
},
{
name: "background",
color: "#27272c",
onColor: "#c5c5ce",
},
{
name: "background-alt",
color: "hsl(260, 10%, 12%)",
onColor: false,
},
{
name: "background-alt-alpha",
color: "hsla(260, 10%, 12%, 0.75)",
onColor: false,
},
{
name: "inverse",
color: "#fff",
onColor: false,
},
{
name: "gray",
color: "#8e8e8e",
onColor: false,
},
{
name: "yellow",
color: "#dedf40",
onColor: false,
},
{
name: "green",
color: "#62cb5c",
onColor: false,
},
{
name: "blue",
color: "#00bbcb",
},
];