forked from Thenlie/Streamability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
28 lines (28 loc) · 889 Bytes
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
background: 'rgb(var(--color-background))',
foreground: 'rgb(var(--color-foreground))',
primary: 'rgb(var(--color-primary))',
transprimary: 'rgb(var(--color-primary) / 0.5)',
text: 'rgb(var(--color-text))',
},
fontFamily: {
sans: ['Inter', 'Avenir', 'Helvetica', ...defaultTheme.fontFamily.sans],
},
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1350px',
'2xl': '1536px',
},
},
plugins: [],
};