Spaces:
Running
Running
File size: 471 Bytes
d8f0e51 |
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 |
module.exports = {
content: ['./*.html'],
theme: {
extend: {
colors: {
BluishWhite: '#F3F7FA',
BluishDark: '#4D5862',
IconBg: '#E8EDF0',
IconBorder: '#D2DAE1',
},
boxShadow: {
DropShadow: '0 8.5px 28.4px rgba(192, 198, 204, 0.25)',
},
fontFamily: {
sans: ['Source Sans Pro', 'sans-serif'],
mono: ['IBM Plex Mono', 'monospace'],
},
},
},
plugins: [],
}
|