-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
42 lines (41 loc) · 1.33 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
import defaultTheme from 'tailwindcss/defaultTheme';
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
transparent: 'transparent',
brown: {
50: '#fdf8f6',
100: '#f2e8e5',
200: '#eaddd7',
300: '#e0cec7',
400: '#d2bab0',
500: '#bfa094',
600: '#a18072',
700: '#977669',
800: '#846358',
900: '#43302b',
},
},
minHeight: {
'100rem': '100rem',
},
fontFamily: {
// sans: ['Inter', ...defaultTheme.fontFamily.sans],
// LumiosMarker
heading: ['LumiosMarker', ...defaultTheme.fontFamily.serif],
content: ['Tangerine', ...defaultTheme.fontFamily.sans],
GrowingGarden: [
'GrowingGarden',
...defaultTheme.fontFamily.serif,
],
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('tailwind-scrollbar')({ nocompatible: true }),
],
};