-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (37 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
screens: {
tablet: '768px',
desktop: '1440px',
},
colors: {
'main-purple': '#635FC7',
'main-purple-hover': '#A8A4FF',
black: '#000112',
'very-dark-grey': '#20212C',
'dark-grey': '#2B2C37',
'lines-dark': '#3E3F4E',
'medium-gray': '#828FA3',
'lines-light': '#E4EBFA',
'light-grey': '#F4F7FD',
white: '#fff',
red: '#EA5555',
'red-hover': '#FF9898',
},
extend: {
fontFamily: {
sans: ['var(--font-jakarta-sans)'],
},
},
},
plugins: [require('tailwind-scrollbar-hide')],
}