forked from craftdocs/craft-extension-inspirations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.31 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
48
49
50
51
52
53
54
55
56
57
58
59
60
const colors = require("tailwindcss/colors");
module.exports = {
purge: {
enabled: true,
content: ["./src/*.html", "./src/*.ts"],
},
darkMode: "class", // or 'media' or 'class'
theme: {
fontSize: {
xs: ".6875rem",
sm: ".8125rem",
base: ".9375rem",
lg: "1.0625rem",
xl: "1.1875rem",
},
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
gray: colors.trueGray,
pink: colors.pink,
purple: colors.purple,
blue: colors.blue,
text: {
light: "#111111",
DEFAULT: "#111111",
dark: "#FFFFFF",
},
secondaryText: {
light: "#666666",
DEFAULT: "#666666",
dark: "#999999",
},
interfaceBorder: {
light: "#F3F3F3",
DEFAULT: "#F3F3F3",
dark: "#2D2D2D",
},
groupBackground: {
light: "#FFFFFF",
DEFAULT: "#FFFFFF",
dark: "#333333",
},
ptr_green: "#2a7768",
ptr_green_dark: "#1d2926",
ptr_orange: "#e97c45",
ptr_orange_dark: "#a66c0d",
systemBackground: {
light: "#FFFFFF",
DEFAULT: "#FFFFFF",
dark: "#222222",
},
},
},
variants: {
extend: {},
},
plugins: [require("autoprefixer")],
};