-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
48 lines (40 loc) · 1018 Bytes
/
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
import type { Config } from "tailwindcss";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'tbs': '868px', // phone overflow protection
'ld': '1440px' // large
},
colors: {
primary: {
blue: "#0046FF",
cyan: "#00E0FF",
purple: "#A259FF",
pink: "#FF59E6",
},
gradient: {
start: "#0046FF",
middle: "#00E0FF",
end: "#A259FF",
},
},
backgroundImage: {
"gradient-radial":
"radial-gradient(circle at 50% 120%, var(--tw-gradient-stops))",
"hero-gradient":
"linear-gradient(135deg, #0046FF 0%, #00E0FF 50%, #A259FF 100%)",
},
},
},
plugins: [],
} satisfies Config;