forked from fossunited/fossunited
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (36 loc) · 869 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./fossunited/www/**/*.html',
'./fossunited/templates/**/*.html',
'./fossunited/stack/web_template/**/*.html',
],
theme: {
extend: {
colors: {
primary: {
50: '#e6f8ed',
100: '#b2e9c8',
200: '#8ddeae',
300: '#5acf89',
400: '#39c572',
500: '#08b74f',
600: '#07a748',
700: '#068238',
800: '#04652b',
900: '#034d21',
950: '#003914',
DEFAULT: '#08b74f',
},
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
body: ['Inter', 'sans-serif'],
mono: ['"Fira Code"', 'monospace'],
code: ['"Fira Code"', 'monospace'],
fff: ['"FFF Forward"', 'sans-serif'],
},
},
},
plugins: [],
}