-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
47 lines (46 loc) · 1.12 KB
/
tailwind.config.js
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
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
mode: "jit",
darkMode: false,
theme: {
fontFamily: {
openSauceSans: ["Open Sauce Sans", "sans-serif"],
},
colors: {
white: "#ffffff",
black: "#000000",
blackLight: "#11112F",
blackDark: "#0C0C28",
purpleLighter: "#CBCBFF",
purpleLight: "#7171B2",
purpleDark: "#525284",
blueDark: "#212149",
},
screens: {
xs: "475px",
...defaultTheme.screens,
},
placeholderColor: {
primary: "#525284",
},
backgroundImage: {
checkbox: "url('/src/assets/images/tik.svg')",
},
order: {
first: "-9999",
last: "9999",
normal: "0",
1: "1",
2: "2",
3: "3",
4: "4",
5: "5",
6: "6",
},
},
purge: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
variants: {
extend: {},
},
plugins: [],
}