-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtailwind.config.js
32 lines (31 loc) · 951 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
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./app/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: {
base: 'var(--primary-base)',
light: 'var(--primary-light)',
dark: 'var(--primary-dark)',
},
theme: {
primary: 'var(--theme-primary)',
secondary: 'var(--theme-secondary)',
},
gray: {
primary: 'var(--gray-primary)',
secondary: 'var(--gray-secondary)',
light: 'var(--gray-light)',
},
'black-light': 'var(--black-light)',
'error-color': '#f16262',
},
fontFamily: {
sans: ['var(--font-roboto)', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [require('@tailwindcss/line-clamp'), require('@tailwindcss/typography')],
};