-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
59 lines (59 loc) · 1.55 KB
/
tailwind.config.mjs
File metadata and controls
59 lines (59 loc) · 1.55 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
53
54
55
56
57
58
59
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
'blockchain': {
'primary': '#2D3748', // Dark blue-gray
'secondary': '#4A5568', // Medium blue-gray
'accent': '#4299E1', // Bright blue
'light': '#EDF2F7', // Light gray
'dark': '#1A202C', // Very dark blue-gray
},
},
typography: {
DEFAULT: {
css: {
'h1, h2, h3, h4': {
color: '#2D3748',
fontWeight: '700',
},
a: {
color: '#4299E1',
textDecoration: 'none',
'&:hover': {
color: '#2D3748',
textDecoration: 'underline',
},
},
ul: {
listStyleType: 'disc',
},
ol: {
listStyleType: 'decimal',
},
'ul, ol': {
paddingLeft: '1.5em',
},
'li': {
marginTop: '0.5em',
marginBottom: '0.5em',
},
blockquote: {
borderLeftColor: '#4299E1',
color: '#4A5568',
},
code: {
color: '#2D3748',
backgroundColor: '#EDF2F7',
padding: '0.2em 0.4em',
borderRadius: '0.25em',
},
},
},
},
},
},
plugins: [require('@tailwindcss/typography')],
};