generated from the-collab-lab/smart-shopping-list-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
43 lines (42 loc) · 1.08 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const colors = require('tailwindcss/colors');
module.exports = {
purge: false,
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
Staatliches: ['Staatliches', 'sans-serif'],
Exo: ['Exo', 'sans-serif'],
Inconsolata: ['Inconsolata', 'sans-serif'],
Karma: ['Karma', 'sans-serif'],
Shippori: ['Shippori Antique B1', 'sans-serif'],
'DM-Sans': ['DM Sans', 'sans-serif'],
},
colors: {
stone: colors.stone,
rose: colors.rose,
orange: colors.orange,
indigo: colors.indigo,
purple: colors.purple,
emerald: colors.emerald,
violet: colors.violet,
cyan: colors.cyan,
teal: colors.teal,
blue: colors.blue,
sky: colors.sky,
green: colors.green,
gray: colors.gray,
yellow: colors.yellow,
amber: colors.amber,
mostlyBlack: '#080404',
black: colors.black,
offWhite: '#F5F5F5',
tomato: '#FF6347',
},
},
},
variants: {
extend: {},
},
plugins: [],
};