-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
79 lines (79 loc) · 1.65 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
],
darkMode: "class",
plugins: [require("@tailwindcss/aspect-ratio")],
theme: {
extend: {
screens: {
fine: { raw: "(pointer: fine)" },
coarse: { raw: "(pointer: coarse)" },
},
},
fontFamily: {
sans: [
'"proxima-nova"',
'"Open Sans"',
'"Gill Sans MT"',
'"Gill Sans"',
"Corbel",
"Helvetica",
"Arial",
"sans-serif",
],
mono: ['"Source Code Pro"', "monospace"],
},
fontSize: {
sm: "0.875rem",
base: "1.0625rem",
lg: "1.3125rem",
xl: "1.6875rem",
"2xl": "2.125rem",
"3xl": "2.75rem",
"4xl": "3.5rem",
},
colors: {
transparent: {
DEFAULT: "transparent",
},
black: {
DEFAULT: "var(--white)",
},
white: {
DEFAULT: "var(--white)",
},
red: {
DEFAULT: "var(--red)",
},
yellow: {
DEFAULT: "var(--yellow)",
},
teal: {
DEFAULT: "var(--teal)",
},
blue: {
DEFAULT: "var(--blue)",
},
purple: {
DEFAULT: "var(--purple)",
},
gray: {
50: "var(--gray-50)",
100: "var(--gray-100)",
200: "var(--gray-200)",
300: "var(--gray-300)",
400: "var(--gray-400)",
500: "var(--gray-500)",
600: "var(--gray-600)",
700: "var(--gray-700)",
800: "var(--gray-800)",
900: "var(--gray-900)",
},
},
},
};