-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
52 lines (48 loc) · 950 Bytes
/
tailwind.config.js
File metadata and controls
52 lines (48 loc) · 950 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
40
41
42
43
44
45
46
47
48
49
50
51
52
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
fontFamily: {
// sans: ["Monda", "sans-serif"],
press: ["'Press Start 2P'", "cursive"],
},
maxWidth: {
"1/3": "30%",
"1/2": "300px",
"3/4": "75%",
},
screens: {
sm: "480px",
md: "768px",
lg: "1005px",
xl: "1440px",
},
colors: {
logo: "#2AA146",
blue: "#1fb6ff",
pink: "#ff49db",
orange: "#ff7849",
"gray-dark": "#273444",
gray: "#8492a6",
"gray-light": "#d3dce6",
},
extend: {
spacing: {
128: "32rem",
144: "36rem",
},
borderRadius: {
"4xl": "2rem",
},
},
},
plugins: [require("daisyui")],
safelist: [
{
pattern: /(bg|text|border)-logo/,
},
{
pattern: /(mt|mb|mr|ml|my|mx|px|py|pt|pb|pl|pr|h)-[0-9]+/,
},
],
};