-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (40 loc) · 1.04 KB
/
tailwind.config.js
File metadata and controls
43 lines (40 loc) · 1.04 KB
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
43
import aspectRatio from '@tailwindcss/aspect-ratio';
import containerQueries from '@tailwindcss/container-queries';
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
content: ['"Afacad Variable"', 'sans-serif'],
title: ['"Roboto Mono Variable"', 'monospace'],
},
colors: {
light: '#F6F6F6',
dark: '#181818',
gray: {
1: '#E2E2E2',
2: '#80808020',
3: '#F1F1F1'
},
half: '#808080',
accent: '#C6F5F9',
highlight: {
1: '#F7902E',
2: '#199FED',
orange: '#FD4102',
},
status: {
green: '#2DA825',
gray: '#9B9696',
},
},
dropShadow: {
'hard': '8px 10px 1px rgba(221, 228, 231, 1)',
}
}
},
plugins: [typography, forms, containerQueries, aspectRatio]
};