forked from m1guelpf/dapp-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
46 lines (46 loc) · 988 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/** @type {import('tailwindcss/tailwind-config').TailwindConfig} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
fontFamily: {
serif: ['Cormorant Garamond', 'serif'],
mono: ['interstate-mono', 'monospace'],
redac: ['Redaction Regular', 'serif'],
pixel: ['Timmy', 'serif'],
header: ['Micro', 'sans-serif'],
},
extend: {
colors: {
black: '#000',
white: '#fff',
// zinc: {
// 50: '#f9fafb',
// 100: '#f4f5f7',
// 200: '#e5e7eb',
// 300: '#d2d6dc',
// 400: '#9fa6b2',
// 500: '#6b7280',
// 600: '#4b5563',
// 700: '#374151',
// 800: '#252f3f',
// 900: '#161e2e',
// },
gray: {
1: '#111111',
2: '#222222',
3: '#171717',
},
murkyblack: '#0a100d',
deepsea: '#132217',
aqua: '#335b54',
kelp: '#657c60',
grass: '#b0ae70',
foam: '#ffe7bc',
mint: '#2d8e7c',
yellow: '#FFe987',
},
},
},
plugins: [],
}