-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (39 loc) · 1017 Bytes
/
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} */
export default {
darkMode: ['class'],
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}",],
theme: {
screens: {
's': '320px', //small mobile
'm': '375px', //small mobile
'l': '425px', //large mobile
'sm': '640px', //small Tablet
'md': '768px ', // tablet
'2md': '894px',
'lg': '1024px', //laptop
'xl': '1280px ', //large laptop
'2xl': '1536px ', //large screens
},
colors:
{
'navbar-bg': '#141414',
'sidebar-bg': '#1a1c20',
'dark-bg': '#0b090a',
'secondary-bg': '#393E46',
'primary-text': '#ffffff',
'secondary-text': '#666666',
'button': '#6e57e0',
//light mode
'bg-light':"#ffffff",
'primary-light':"#000000"
},
extend: {
},
fontFamily: {
Montserrat: ['Montserrat', 'sans-serif'],
Roboto: ['Roboto Mono', 'monospace'],
Chakra: ['Chakra Petch', 'sans-serif'],
},
},
plugins: [],
}