-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
42 lines (41 loc) · 1.13 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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
colors: {
black: '#000',
'neutral-100': '#F4F4F4',
'neutral-200': '#F6F6F6',
'neutral-300': '#767575',
'neutral-400': '#D9DCE0',
'neutral-500': '#373F41',
'neutral-700': '#575656',
'neutral-900': '#414141',
'primary-100': '#F8FBFC',
'primary-200': '#E2EFF3',
'primary-300': '#D4E7ED',
'primary-400': '#1B808D',
'primary-500': '#00546D',
'primary-900': '#002F3D',
'secondary-200': '#FFF0E0',
'secondary-300': '#FECD90',
'secondary-500': '#FFAF2E',
'secondary-700': '#E58E00',
'secondary-900': '#794300',
white: '#fff',
},
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
}
export default config