-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (42 loc) · 899 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
42
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
container: {
center: true,
},
extend: {
fontFamily: {
jetbrains: ['var(--font-jetbrains-mono)'],
},
colors: {
'ub-purple': {
100: '#F5E0F6',
200: '#EBC0EC',
300: '#E2A0E3',
400: '#D981DA',
500: '#CF61D1',
600: '#C641C8',
700: '#AC32AE',
800: '#8D298F',
},
'ub-yellow': {
50: '#FFFAEB',
100: '#FFF4D6',
200: '#FFE9AE',
300: '#FEDE85',
400: '#FED35D',
500: '#FEC72D',
},
},
boxShadow: {
base: '-4px 4px black',
},
},
},
plugins: [],
};