-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (47 loc) · 1.03 KB
/
tailwind.config.js
File metadata and controls
51 lines (47 loc) · 1.03 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
// inter: ["Inter", "sans-serif"],
// "edu-sa": ["Edu SA Beginner", "cursive"],
// mono: ["Roboto Mono", "monospace"],
sans: ['Inter', 'system-ui', 'sans-serif'],
},
colors: {
white: "#fff",
black: "#000",
transparent: "#ffffff00",
richblack: {
5: "#F1F2FF",
25: "#DBDDEA",
50: "#C5C7D4",
100: "#AFB2BF",
200: "#999DAA",
300: "#838894",
400: "#6E727F",
500: "#585D69",
600: "#424854",
700: "#2C333F",
800: "#161D29",
900: "#000814",
},
pink: {
200: "#EF476F",
},
yellow: {
50: "#FFD60A",
},
},
maxWidth: {
maxContent: "1260px",
maxContentTab: "650px",
},
},
},
plugins: [],
}