-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
88 lines (87 loc) · 2.04 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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: {
screens: {
"2xs": "375px",
xs: "480px",
sm: "600px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1400px",
"3xl": "1600px",
"4xl": "1900px",
},
fontFamily: {
primary: ["var(--font-poppins)", "sans-serif"],
body: ["var(--font-nunito_sans)", "sans-serif"],
},
borderRadius: {
DEFAULT: '5px',
'full' : '9999px',
},
extend: {
colors: {
'navy': {
DEFAULT: '#141A29',
50: '#6B81B7',
100: '#5A72AF',
200: '#465B90',
300: '#35456E',
400: '#25304B',
500: '#141A29',
600: '#0c1220',
700: '#000000',
800: '#000000',
900: '#000000',
950: '#000000'
},
'purple': {
DEFAULT: 'var(--purple)',
50: '#F3A6FF',
100: '#F091FF',
200: '#EA68FF',
300: '#E440FF',
400: '#DF17FF',
500: 'var(--purple)',
600: '#9C00B5',
700: '#6B007D',
800: '#3B0045',
900: '#0B000D',
950: '#000000'
},
'pink': {
DEFAULT: 'var(--pink)',
50: '#FFD1F2',
100: '#FFBCEC',
200: '#FF93E1',
300: '#FF6BD6',
400: '#FF42CA',
500: 'var(--pink)',
600: '#E000A2',
700: '#A80079',
800: '#700051',
900: '#380028',
950: '#1C0014'
},
},
hueRotate: {
'20': '20deg',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [
require('@tailwindcss/container-queries'),
],
}
export default config