-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (42 loc) · 1.07 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
43
44
const flowbite = require('flowbite-react/tailwind');
import { Flowbite } from 'flowbite-react';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{js,jsx,ts,tsx}', './index.html', flowbite.content()],
theme: {
extend: {
colors: {
'mac-btn-red': '#fe5f57',
'mac-btn-yellow': '#febc2e',
'mac-btn-green': '#28c840',
'mac-text-white': '#f7f7f7',
'mac-text-yellow': '#e7d184',
'mac-text-blue': '#35feff',
'mac-text-blink': '#c4c5ce',
'mac-header': '#e3e2e4',
'mac-body': '#5b5d7a',
'link-blue': '#00bfff',
},
fontFamily: {
'mac-terminal': [
// 'MonacoWeb',
'Monaco',
'Consolas',
'Lucida Console',
'monospace',
],
poppins: ['Poppins', 'sans-serif'],
roboto: ['Roboto', 'sans-serif'],
},
height: {
136: '136px',
},
width: {
500: '500px',
750: '750px',
900: '900px',
},
},
},
plugins: [flowbite.plugin()],
};