-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
80 lines (70 loc) · 1.8 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
80
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
"tailwind.safelist.txt",
],
plugins: [require("tailwind-scrollbar-hide")],
theme: {
container: {
screens: { mobile: "2560px", tablet: "2560px", desktop: "2560px" },
},
fontFamily: {
sans: ["BasisGrotesque", ...defaultTheme.fontFamily.sans],
mono: [
"BasisGrotesqueMono",
"mono",
...defaultTheme.fontFamily.sans,
],
},
borderRadius: {
none: "0",
DEFAULT: "5px",
full: "9999px",
},
letterSpacing: {
normal: "-0.015em",
},
colors: {
current: "currentColor",
transparent: {
DEFAULT: "#00000000",
},
white: {
DEFAULT: "#FFFFFF",
},
black: {
light: "#1D1D1D",
DEFAULT: "#000000",
},
gray: {
DEFAULT: "#ededed",
light: "#b5b5b5",
medium: "#6f6f6f",
dark: "#393939",
},
yellow: {
DEFAULT: "#FFDA3D",
dark: "#f4cf48",
},
sand: {
light: "#F8F7EF",
DEFAULT: "#e6e4dd",
dark: "#d6d4cd",
},
orange: {
DEFAULT: "#f2b062",
},
pink: {
DEFAULT: "#f4b8f3",
},
},
extend: {
maxWidth: {
"8xl": "90rem",
},
},
},
};