-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (41 loc) · 876 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (41 loc) · 876 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
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./domain/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
fontSize: {
sm: "0.75rem",
base: "1rem",
lg: "1.25rem",
xl: "1.5rem",
"2xl": "1.75rem",
"3xl": "2rem",
"4xl": "3rem",
},
extend: {
colors: {
primary: colors.violet,
dark: {
bg: colors.black,
fg: "#333333",
text: colors.white,
},
light: {
bg: colors.white,
fg: "#F5F5F7",
text: colors.black,
},
},
fontFamily: {
pretendard: "var(--font-pretendard)",
},
},
},
plugins: [],
};