-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
42 lines (39 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
39
40
41
42
/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
files: ["*.html","./src/**/*.{html,rs}"],
},
theme: {
fontFamily: {
sans: ['system-ui', 'sans-serif'],
mono: ['Menlo', 'monospace']
},
extend: {
colors: {
'granola-orange': "#E39844",
'light-granola-orange': "#FBF3EA",
'main-background': "#21252D",
'secondary-background': "#F8F8F8",
'table-section': "#FFFFFF",
'background': '#F9F9F8',
'table-header-fill': '#EEEDF7',
'table-row-fill': '#FFFFFF',
'table-row-text-color': '#25213B',
'table-header-text-color': '#25213B',
'green': '#56D05F',
'blue': '#14DBF6',
'purple': '#8572E6',
'dark-blue': '#4392F7',
'card-purple': '#F4F2FF',
'card-blue': '#ECFBFF',
'card-green': '#EEFCEF',
'status-success': '#56D05F',
'status-failed': '#FB7631',
'status-unknown': '#F8AC4B',
}
}
},
plugins: [
require('@tailwindcss/container-queries'),
],
}