forked from hiero-ledger/hiero-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
83 lines (83 loc) · 2 KB
/
tailwind.config.js
File metadata and controls
83 lines (83 loc) · 2 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["content/**/*.md", "layouts/**/*.html"],
theme: {
extend: {
transitionProperty: {
'colors': 'color, background-color, border-color',
'transform': 'transform',
},
colors: {
'red': {
DEFAULT: '#B81A56',
'dark': '#992350',
'light': '#D92D6A',
},
},
},
colors: {
transparent: 'transparent',
current: 'currentColor',
'white': {
DEFAULT: '#FFFFFF',
'dark': '#E5E4D7'
},
'black': '#000000',
'charcoal': '#1E1E1E',
'red': {
DEFAULT: '#B81A56',
'dark': '#992350',
'light': '#D92D6A'
},
'sand': '#E5E4D7',
'gray': {
DEFAULT: '#616161',
'light': '#EFEFEE',
},
},
fontFamily: {
'serif': ['"Space Grotesk"'],
'ibm': ['"IBM Plex Mono"'],
},
fontSize: {
xs: '0.75rem', /* 12px */
sm: '0.875rem', /* 14px */
base: ['1rem', {
lineHeight: '1.313rem',
letterSpacing: '-0.054rem',
fontWeight: '400',
}], /* 16px */
lg: ['1.125rem', {
lineHeight: '1.438rem',
letterSpacing: '-0.06rem',
fontWeight: '400',
}], /* 18px */
xl: ['1.75rem', {
lineHeight: '2.25rem',
letterSpacing: '-0.094rem',
fontWeight: '400',
}], /* 28px */
'2xl': ['2rem', {
lineHeight: '2.25rem',
letterSpacing: '-0.167rem',
fontWeight: '400',
}], /* 32px */
'3xl': ['2.25rem', {
lineHeight: '2.875rem',
letterSpacing: '-0.188rem',
fontWeight: '400',
}], /* 36px */
'4xl': ['4rem', {
lineHeight: '4.5rem',
letterSpacing: '-0.333rem',
fontWeight: '400',
}], /* 64px */
'5xl': ['7.5rem', {
lineHeight: '6.875rem',
letterSpacing: '-0.625rem',
fontWeight: '400',
}], /* 120px */
}
},
plugins: [],
}