-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (41 loc) · 1.04 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './public/components/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
screens: {
'sm': '120px',
'base': '320px',
'md': '640px',
'lg': '768px',
'xl': '1024px',
'2xl': '1280px',
'3xl': '1536px',
},
colors: {
'primary-bg-light': '#ecedee',
'primary-bg-dark': '#202327',
'primary-text-light': '#212121',
'primary-text-dark': '#ffffff',
'secondary-text-light': '#4a3032',
'secondary-text-dark': '#e2e2e2',
'primary-border-light': '#c4d5fa',
'primary-border-dark': '#c4d5fa',
'btn-bg-light': '#000000',
'btn-bg-dark': '#ffffff',
'nav-text-light': '#c4d5fa',
'nav-text-dark': '#ffffff',
'custom-white': '#f5f5f5',
'contact-bg-light': '#f7f9fd',
'nav-bg': '#121212',
'nav-bg-light': '#1e1e1e',
'nav-bg-dark': '#121212',
'contact-bg-dark': '#273535',
'transparent': 'transparent',
'none': 'none',
},
},
},
plugins: [],
};