tailwind.config.js 717 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
	content: ['./src/**/*.{html,js,svelte,ts}'],
	theme: {
		extend: {
			colors: {
				gray: {
Timothy J. Baek's avatar
Timothy J. Baek committed
9
10
11
12
13
14
15
16
17
18
					50: '#f9f9f9',
					100: '#ececec',
					200: '#e3e3e3',
					300: '#cdcdcd',
					400: '#b4b4b4',
					500: '#9b9b9b',
					600: '#676767',
					700: '#4e4e4e',
					800: '#333',
					850: '#262626',
Danny Liu's avatar
Danny Liu committed
19
					900: 'var(--color-gray-900, #171717)',
20
					950: 'var(--color-gray-950, #0d0d0d)'
Timothy J. Baek's avatar
Timothy J. Baek committed
21
				}
Timothy J. Baek's avatar
Timothy J. Baek committed
22
23
24
25
26
27
28
29
30
31
32
			},
			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
33
34
35
			}
		}
	},
36
	plugins: [require('@tailwindcss/typography')]
Timothy J. Baek's avatar
Timothy J. Baek committed
37
};