-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (49 loc) · 1.23 KB
/
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
42
43
44
45
46
47
48
49
50
const colors = require('tailwindcss/colors');
const defaultTheme = require('tailwindcss/defaultTheme');
const breakpoints = require('./src/config/breakpoints');
module.exports = {
plugins: [],
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
boxShadow: {
heavy: '5px 5px 5px rgb(0 0 0 / 25%)',
},
colors: {
amber: colors.amber,
current: 'currentColor',
'black-25': 'rgba(0, 0, 0, 0.25)',
'black-50': 'rgba(0, 0, 0, 0.5)',
'black-75': 'rgba(0, 0, 0, 0.75)',
gray: {
...colors.stone,
950: 'hsl(0deg 0% 5%)',
},
'lp-blue': '#297CBB',
'near-black': 'hsl(0deg 0% 2%)',
purple: colors.purple,
primary: colors.indigo,
},
fontFamily: {
lora: ['Lora', ...defaultTheme.fontFamily.serif],
display: ['Libre Baskerville', ...defaultTheme.fontFamily.serif],
},
fontSize: {
xxxxs: '9px',
xxxs: '10px',
xxs: '11px',
},
letterSpacing: {
wide: '.01em',
},
width: {
'3/7': '42.8571429%',
'3/8': '37.5%',
},
},
screens: {
...breakpoints,
pointer: { raw: '(pointer: fine)' },
},
},
};