forked from ixartz/Astro-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (50 loc) · 1.26 KB
/
tailwind.config.js
File metadata and controls
50 lines (50 loc) · 1.26 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
44
45
46
47
48
49
50
/* eslint-disable import/no-extraneous-dependencies, global-require */
module.exports = {
content: [
'./src/**/*.{astro,html,js,jsx,svelte,ts,tsx,vue}',
'./node_modules/astro-boilerplate-components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
ink: {
base: '#F8F7F4',
surface: '#FFFFFF',
elevated: '#F0EEE9',
border: '#E4E0D9',
},
sand: {
100: '#111110',
200: '#3A3A37',
300: '#737370',
400: '#A3A3A0',
500: '#D4D4D0',
},
flame: '#2563EB',
teal: '#059669',
},
fontFamily: {
sans: ['"DM Sans"', 'sans-serif'],
display: ['"DM Sans"', 'sans-serif'],
},
animation: {
'fade-up': 'fadeUp 0.5s ease-out forwards',
'fade-in': 'fadeIn 0.4s ease-out forwards',
},
keyframes: {
fadeUp: {
'0%': { opacity: '0', transform: 'translateY(12px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
},
},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/typography'),
],
};