-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.ts
51 lines (50 loc) · 1.14 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
screens: {
desktop: "1920px",
tablet: "1024px",
mobile: "375px",
},
fontSize: {
h1: "48px",
h2: "32px",
h3: "24px",
normal: "16px",
"h1-mobile": "30px",
"h2-mobile": "24px",
"h3-mobile": "20px",
"normal-mobile": "16px",
},
colors: {
blue: "#52599F",
"light-brown": "#D3C4B7",
white: "#DDD8CB",
black: "#000000",
red: "#B84C3F",
orange: "#CC9232",
gray: "#D9D9D9",
"light-blue": "#007AFF",
// new theme below
background: "#151B2E",
"background-light": "#27304D",
primary: "#97BDFF",
secondary: "#ABC6FF",
foreground: "#C9E6FF",
accent: "#BDB3FF",
"accent-light": "#d4cdff",
},
aspectRatio: {
"1/2": "1 / 2",
},
},
},
plugins: [],
};
export default config;