-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
34 lines (33 loc) · 1.02 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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'bright-blue': 'var(--bright-blue)',
'bg': 'var(--bg)',
'divider': 'var(--divider)',
'card-bg': 'var(--card-bg)',
'grayish-text': 'var(--grayish-text)',
'text-color': 'var(--text-color)',
'text-hovered': 'var(--text-hovered)',
},
backgroundImage: {
'check-bg': 'linear-gradient(to bottom right, hsl(192, 100%, 67%), hsl(280, 87%, 65%));',
'desktop-dark': 'url("/images/bg-desktop-dark.jpg")',
'mobile-dark': 'url("/images/bg-mobile-dark.jpg")',
'desktop-light': 'url("/images/bg-desktop-light.jpg")',
'mobile-light': 'url("/images/bg-mobile-light.jpg")',
},
content: {
'tick': 'url("/images/icon-check.svg")',
}
},
},
plugins: [],
}
export default config