-
Notifications
You must be signed in to change notification settings - Fork 378
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
52 lines (52 loc) · 1.31 KB
/
Copy pathtailwind.config.mjs
File metadata and controls
52 lines (52 loc) · 1.31 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
51
52
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'class',
theme: {
extend: {
colors: {
elixir: {
50: '#f5f0f9',
100: '#ebe1f3',
200: '#d4c0e6',
300: '#b899d4',
400: '#9B8FB4',
500: '#7C6E8A',
600: '#6B5B7B',
700: '#4A365F',
800: '#3B2A4D',
900: '#2D1F3B',
950: '#1A1225',
},
accent: {
DEFAULT: '#8B5CF6',
hover: '#7C3AED',
light: '#A78BFA',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
display: ['Plus Jakarta Sans', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
animation: {
'fade-in': 'fadeIn 0.5s ease-out',
'slide-up': 'slideUp 0.5s ease-out',
'count-up': 'countUp 2s ease-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
};