-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (33 loc) · 1.27 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./components/**/*.tsx', './app/**/*.tsx', './constants**/*.ts'],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-inter)'],
mono: ['var(--font-nunito)'],
code: ['var(--source-code)'],
},
colors: {
// Page bg color
'react-bg-light': '#FFFFFF',
'react-bg-dark': '#23272f',
// Secondary page bg color
'react-bg-sec-light': '#F6F7F9',
'react-bg-sec-dark': '#343A46',
// Buttons no CTA
'react-blue-hover-light': 'rgba(35, 39, 47, 0.05)',
'react-blue-hover-dark': 'rgba(246, 247, 249, 0.05)',
'react-blue-txt-light&dark': 'rgb(8, 126, 164)',
'react-blue-txt-light&dark-hover': 'rgba(8, 126, 164,0.8)',
// Buttons CTA
'react-button-blue-light': 'rgb(8, 126, 164)',
'react-button-blue-dark': 'rgb(8, 126,164)',
// Text
'react-txt-light': 'rgb(35, 39, 47)',
'react-txt-dark': 'rgb(246, 247, 249)',
},
},
},
}