forked from sightread/sightread
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 loc) · 963 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
screens: {
sm: '650px',
md: '800px',
lg: '1100px',
// This breakpoint exists solely for right padding on the AppBar GitHub Icon
// Ideally come up with something better
lgminus: '1130px',
},
extend: {
fontSize: {
reponsive2Xl: 'clamp(1.7rem, 1rem + 3vw, 4rem)',
reponsiveXl: 'clamp(1rem, 1rem + 1vw, 1.2rem)',
},
colors: {
purple: {
lightest: '#F7F4FE',
light: '#EEE5FF',
hover: '#b99af4',
primary: '#8147EB',
dark: '#611AE5',
darker: '#5326a6',
darkest: '#280A6C',
},
orange: {
light: '#DC7E52',
primary: '#EB7847',
dark: '#CF4E17',
},
green: {
light: '#44b22e',
},
},
},
},
plugins: [],
}