tailwind.config.js 653 Bytes
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
/** @type {import('tailwindcss').Config} */
export default {
Timothy J. Baek's avatar
Timothy J. Baek committed
3
	darkMode: 'class',
Timothy J. Baek's avatar
Timothy J. Baek committed
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
	content: ['./src/**/*.{html,js,svelte,ts}'],
	theme: {
		extend: {
			colors: {
				gray: {
					50: '#f7f7f8',
					100: '#ececf1',
					200: '#d9d9e3',
					300: '#c5c5d2',
					400: '#acacbe',
					500: '#8e8ea0',
					600: '#565869',
					700: '#40414f',
					800: '#343541',
					900: '#202123',
					950: '#050509'
				}
Timothy J. Baek's avatar
Timothy J. Baek committed
21
22
23
24
25
26
27
28
29
30
31
			},
			typography: {
				DEFAULT: {
					css: {
						pre: false,
						code: false,
						'pre code': false,
						'code::before': false,
						'code::after': false
					}
				}
Timothy J. Baek's avatar
Timothy J. Baek committed
32
33
34
			}
		}
	},
35
	plugins: [require('@tailwindcss/typography')]
Timothy J. Baek's avatar
Timothy J. Baek committed
36
};