-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
53 lines (52 loc) · 1.23 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
import type { Config } from 'tailwindcss';
import defaultTheme from 'tailwindcss/defaultTheme';
export default {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
variants: {
extend: {
display: ['responsive'],
},
},
theme: {
extend: {
fontFamily: {
primary: ['Inter', ...defaultTheme.fontFamily.sans],
},
colors: {
transparent: 'transparent',
current: 'currentColor',
primary: '#001C3B',
whiteAlpha: {
50: '#0c182105',
100: '#FFFFFF0F',
300: '#FFFFFF29',
500: '#FFFFFF5C',
600: '#FFD0AC',
1000: '#FFFFFF',
},
brandBlue: {
50: '#6cf0db',
100: '#81DFE4',
200: '#15BBC6',
300: '#05A0B6',
},
gray: {
300: '#999999',
400: '#676767',
500: '#3C4150',
600: '#303544',
650: '#30354480',
700: '#272C39',
900: '#222631',
},
orange: '#FF9900',
yellow: '#f3e3ae',
red: '#B50A0A',
},
backgroundImage: {
"background-dark": "url('/images/background.svg')",
},
},
},
plugins: [require('@tailwindcss/forms')],
} satisfies Config;