-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththemes.js
More file actions
39 lines (38 loc) · 754 Bytes
/
themes.js
File metadata and controls
39 lines (38 loc) · 754 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
var settings = {
//width of each color square
width: "3em",
//width of space between color selectors
gap: "1em",
//whether you want to use
//cookies to save site-wide theme choices
cookies: false,
//the domain for the cookies to be set on
domain: 'jacq.dev'
};
var data = [
{
bg: "#F4DFD0",
fg: "#FDEFEF",
col1: "#fff8f8",
col2: "#ded2c3",
default: true
},
{
bg: "#93B5C6",
fg: "#C9CCD5",
col1: "#FFE3E3",
col2: "#E4D8DC"
},
{
bg: "#BAABDA",
fg: "#D6E5FA",
col1: "#FFF9F9",
col2: "#D77FA1"
},
{
bg: "#87AAAA",
fg: "#C8E3D4",
col1: "#F6EABE",
col2: "#F6D7A7"
},
];