-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
30 lines (30 loc) · 976 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'primary': 'var(--primary)',
'dark-violet': 'var(--dark-violet)',
'very-dark-blue': 'var(--very-dark-blue)',
'danger': 'var(--danger)',
'gray': 'var(--gray)',
'light-gray': 'var(--light-gray)',
'grayish-violet': 'var(--grayish-violet)',
'very-dark-violet': 'var(--very-dark-violet)',
'modal-bg': 'var(--modal-bg)',
},
backgroundImage: {
'bg-shorten-mobile': "url('/images/bg-shorten-mobile.svg')",
'bg-shorten-desktop': "url('/images/bg-shorten-desktop.svg')",
'bg-boost-mobile': "url('/images/bg-boost-mobile.svg')",
'bg-boost-desktop': "url('/images/bg-boost-desktop.svg')",
},
},
},
plugins: [],
}