-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
37 lines (37 loc) · 1.04 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
35
36
37
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/components/**/*.{ts,tsx}', './src/app/**/*.{ts,tsx}'],
theme: {
colors: {},
extend: {
fontFamily: {
body: ['var(--font-playfair)'],
monospace: ['var(--font-inconsolata)'],
},
colors: {
transparent: 'transparent',
white: '#ffffff',
black: '#000000',
theme: {
base: 'rgba(var(--color-base), <alpha-value>)',
inverted: 'rgba(var(--color-inverted), <alpha-value>)',
muted: 'rgba(var(--color-muted), <alpha-value>)',
highlight: 'rgba(var(--color-highlight), <alpha-value>)',
brand: {
100: 'rgba(var(--color-brand-100), <alpha-value>)',
200: 'rgba(var(--color-brand-200), <alpha-value>)',
300: 'rgba(var(--color-brand-300), <alpha-value>)',
},
},
},
container: {
center: true,
padding: '1rem',
},
screens: {
xs: '480px',
},
},
},
plugins: [],
};