forked from onwidget/astrowind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
37 lines (36 loc) · 1.09 KB
/
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
29
30
31
32
33
34
35
36
37
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
primary: 'var(--aw-color-primary)',
secondary: 'var(--aw-color-secondary)',
accent: 'var(--aw-color-accent)',
default: 'var(--aw-color-text-default)',
muted: 'var(--aw-color-text-muted)',
magenta: {
DEFAULT: '#A33EB5',
50: '#E4C1EA',
100: '#DDB2E5',
200: '#CF93DA',
300: '#C275D0',
400: '#B557C5',
500: '#A33EB5',
600: '#7D308B',
700: '#582161',
800: '#321338',
900: '#0C050E',
950: '#000000',
},
},
fontFamily: {
sans: ['var(--aw-font-sans)', ...defaultTheme.fontFamily.sans],
serif: ['var(--aw-font-serif)', ...defaultTheme.fontFamily.serif],
heading: ['var(--aw-font-heading)', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [require('@tailwindcss/typography')],
darkMode: 'class',
};