-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
58 lines (57 loc) · 1.4 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
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: {
colors: {
white: '#ffffff',
black: '#000000',
navy: '#072AC8',
blue: '#1E96FC',
mediumblue: '#7AC2FF',
lightblue: '#E9F5FF',
skyblue: '#C8E0F5',
mint: '#46E5DC',
yellow: '#FFF16C',
darkgray: '#5B5C5E',
gray: {
DEFAULT: '#8C8C8C',
100: '#f3f4f6',
200: '#e5e7eb',
},
lightgray: '#999999',
},
borderRadius: {
'8': '8px',
'12': '12px',
'16': '16px',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'gradient-diagonal':
' linear-gradient(130deg, var(--tw-gradient-stops))',
},
width: {
'150': '150%',
},
boxShadow: {
'header-bottom': '0px 4px 4px -1px rgb(0 0 0 / 0.1)',
},
aspectRatio: {
'3/4': '3 / 4',
'1/1': '1 / 1',
},
maxWidth: {
'2/3': '66.666667%',
},
},
},
plugins: [require('@tailwindcss/aspect-ratio')],
};
export default config;