-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
37 lines (37 loc) · 1002 Bytes
/
tailwind.config.cjs
File metadata and controls
37 lines (37 loc) · 1002 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
'sans': ['proxima-nova', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"]
},
colors: {
xAppBlue: {
100: '#F8FAFD',
900: '#0030CF'
},
xAppOrange: {
100: '#FFFBF4',
900: '#F8BF4C'
},
xAppGreen: {
100: '#F3FDF9',
900: '#3BDC96'
},
xAppRed: {
100: '#FFF5F5',
900: '#EB5757'
},
grey: 'rgba(96,104,133,1)',
silver: 'rgba(172, 177, 193, 1)',
lightGrey: 'rgb(235, 236, 238)',
}
},
plugins: [require('tailwind-scrollbar-hide')],
}
}