-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
54 lines (53 loc) · 1.17 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
import type { Config } from 'tailwindcss';
import defaultTheme from 'tailwindcss/defaultTheme';
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: {
extend: {
colors: {
primary: '#087F8C',
secondary: '#4F1D75',
tertiary: '#FF0054',
accent: '#FFBD00',
white: '#FFFFFF',
dark: '#000000',
orange: '#FF5400',
'event-pink': '#B82458',
'event-orange': '#F5722F',
},
fontSize: {
'2xs': '0.6rem',
},
},
fontFamily: {
lexend: ['var(--font-lexend)', 'sans-serif'],
},
screens: {
'2xs': '440px',
xs: '520px',
...defaultTheme.screens,
'3xl': '1800px',
'4xl': '2050px',
'5xl': '2300px',
'6xl': '2550px',
},
},
plugins: [],
safelist: [
'!bg-accent',
'!bg-secondary',
'!bg-event-pink',
'!bg-event-orange',
'!text-white',
'!text-black',
'border-b-accent',
'border-b-event-orange',
'border-b-event-pink',
'border-b-secondary',
],
};
export default config;