-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
60 lines (58 loc) · 1.31 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
52
53
54
55
56
57
58
59
60
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
const config = {
content: ['./src/**/*.{html,js,svelte}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Roboto', ...defaultTheme.fontFamily.sans]
},
colors: {
transparent: 'transparent',
current: 'currentColor',
darkblue: '#00101a',
indigo: colors.indigo,
blue: colors.blue,
red: colors.red,
orange: colors.orange,
yellow: colors.yellow,
green: colors.green,
teal: colors.teal,
purple: colors.purple,
pink: colors.pink,
slate: colors.slate,
gray: colors.gray,
neutral: colors.neutral,
stone: colors.stone,
amber: colors.amber,
lime: colors.lime,
emerald: colors.emerald,
cyan: colors.cyan,
sky: colors.sky,
violet: colors.violet,
fuchsia: colors.fuchsia,
rose: colors.rose,
theme: {
50: '#fdfcfa',
100: '#fbf0e8',
200: '#f7d1d0',
300: '#eda5a6',
400: '#e7757a',
500: '#d95156',
600: '#c0373b',
700: '#982a2c',
800: '#6d1d1e',
900: '#431211'
}
}
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio')
]
};
module.exports = config;