-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (34 loc) · 729 Bytes
/
tailwind.config.js
File metadata and controls
39 lines (34 loc) · 729 Bytes
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
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
darkMode: 'class',
theme: {
extend: {
colors: {
blurple: '#5865F2',
dgrey: {
// brand "black" 23272A
// very dark 1E1F22
// darker 2B2D31
// slightly dark 313338
// not so dark 404249
950: '#1E1F22',
900: '#2B2D31',
// 950: '#1E1F23',
// 900: '#202225',
800: '#2f3136',
700: '#36393f',
600: '#4f545c',
400: '#d4d7dc',
300: '#e3e5e8',
200: '#ebedef',
100: '#f2f3f5'
}
}
}
},
variants: {},
plugins: [typography, forms]
};