-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
49 lines (49 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
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: {
yellow: '#FFE429',
red: '#FF0000',
cyan: '#5AF5FF',
black: '#2F2F2F',
white: '#FFFFFF',
'dark-gray': '#9E9E9E',
gray: '#F6F6F6',
'light-gray': '#F9F9F9',
blue: '#0038FF',
orange: '#FF5C00',
green: '#00CC21',
},
lineHeight: {
'12': '3rem',
},
borderWidth: {
'1': '1px',
},
height: {
'22.5': '5.5625rem',
'42.5': '10.625rem',
'122': '30.5rem',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
fontSize: {
xs: '1rem',
sm: '1.15rem',
base: '1.25rem',
xl: '1.45rem',
},
},
},
plugins: [require('daisyui')],
};
export default config;