-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
51 lines (51 loc) · 1.28 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { fontFamily } = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
white: 'white',
black: 'black',
mauve: {
100: '#fdfcfd',
200: '#f9f8f9',
300: '#f4f2f4',
400: '#eeedef',
500: '#e9e8ea',
600: '#e4e2e4',
700: '#dcdbdd',
800: '#c8c7cb',
900: '#908e96',
1000: '#86848d',
1100: '#6f6e77',
1200: '#1a1523',
},
mauveDark: {
100: '#161618',
200: '#1c1c1f',
300: '#232326',
400: '#28282c',
500: '#2e2e32',
600: '#34343a',
700: '#3e3e44',
800: '#504f57',
900: '#706f78',
1000: '#7e7d86',
1100: '#a09fa6',
1200: '#ededef',
},
red: { 900: '#e5484d' },
amber: { 900: '#ffb224' },
green: { 900: '#30a46c' },
},
extend: {
fontFamily: { sans: ['var(--font-inter)', ...fontFamily.sans] },
transitionDuration: { 0: '0ms' },
},
},
plugins: [require('@headlessui/tailwindcss')],
};