tailwind.config.js 672 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
19
20
21
					50: '#f9f9f9',
					100: '#ececec',
					200: '#e3e3e3',
					300: '#cdcdcd',
					400: '#b4b4b4',
					500: '#9b9b9b',
					600: '#676767',
					700: '#4e4e4e',
					800: '#333',
					850: '#262626',

					900: '#171717',
					950: '#0d0d0d'
Timothy J. Baek's avatar
Timothy J. Baek committed
22
				}
Timothy J. Baek's avatar
Timothy J. Baek committed
23
24
25
26
27
28
29
30
31
32
33
			},
			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
34
35
36
			}
		}
	},
37
	plugins: [require('@tailwindcss/typography')]
Timothy J. Baek's avatar
Timothy J. Baek committed
38
};