-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
35 lines (35 loc) · 968 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
navy: {
50: '#C1DDF6',
100: '#A2CBF2',
200: '#83BAED',
300: '#64A9E9',
400: '#5087BA',
500: '#3C658C',
600: '#28445D',
700: '#1E3346',
800: '#192B3B',
900: '#14222F',
},
},
fontFamily: {
sans: ['Product Sans', 'sans-serif'],
},
borderRadius: {
DEFAULT: '17px',
},
boxShadow: {
button: 'inset 4px 4px 6px rgba(0, 0, 0, 0.5);',
},
},
},
plugins: [],
};