-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
60 lines (58 loc) · 1.26 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{ts,tsx,mdx}",
"./components/**/*.{ts,tsx,mdx}",
"./app/**/*.{ts,tsx,mdx}",
],
theme: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
colors: {
black: "#0f0f0f",
white: "#f0f0f0",
blue: "#1fb6ff",
gray: "#8492a6",
navy: "#19376d",
sky: "#a5d7e8",
purple: "#7e5bef",
pink: "#ff49db",
orange: "#ff7849",
green: "#13ce66",
yellow: "#ffc82c",
"dark-navy": "#0b2447",
"light-navy": "#576CBC",
"gray-dark": "#273444",
"gray-light": "#d3dce6",
"light-white": "#ffffff",
},
fontFamily: {
sans: ["Pretendard", "Graphik", "sans-serif"],
serif: ["Merriweather", "serif"],
},
fontWeight: {
thin: "100",
hairline: "100",
extralight: "200",
light: "300",
normal: "400",
medium: "500",
semibold: "600",
bold: "700",
"extra-bold": "800",
black: "900",
},
extend: {
animation: {
spin: "spin 1s linear infinite",
},
},
},
plugins: [require("@tailwindcss/typography")],
};
export default config;