forked from enricoros/big-AGI
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
28 lines (25 loc) · 982 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
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
primary: { ...colors.teal, DEFAULT: colors.teal[500] },
gray: { ...colors.stone, DEFAULT: colors.stone[500] },
yellow: { ...colors.amber, DEFAULT: colors.amber[500] },
red: { ...colors.red, DEFAULT: colors.red[500] },
green: { ...colors.green, DEFAULT: colors.green[500] },
black: colors.black,
white: colors.white,
mauve: { DEFAULT: 'hsl(30, 30%, 99%)', dark: 'hsl(30, 30%, 20%)' },
transparent: colors.transparent,
},
fontFamily: {
sans: ['InterVariable', ...defaultTheme.fontFamily.sans],
mono: ['JetBrains MonoVariable', ...defaultTheme.fontFamily.mono],
},
extend: {},
},
plugins: [require('@tailwindcss/forms')],
}