forked from oscakampala/oscakampala.github.io
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
43 lines (41 loc) · 937 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
37
38
39
40
41
42
43
/**
* @format
* @type {import('tailwindcss').Config}
*/
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
sm: '480px',
md: '768px',
mdTwo: '940px',
lg: '1000px',
xl: '1440px',
},
colors: {
black: "#000",
white: "#fff",
transparent: "transparent",
"primary-light": "#ecf0f3",
"primary-dark": "#283756",
"secondary-1": "#fff7ed",
"secondary-2": "#ffedd5",
"secondary-3": "cbd5e1",
"secondary-4": "#f97316",
"slate-50": "#f8fafc",
"slate-300": "#f8fafc",
"slate-700": "#334155",
"slate-900": "#0f172a",
'dark-red': '#7f1d1d',
'light-red': '#fef2f2',
'dark-green': '#14532d',
'light-green': '#f0fdf4',
},
extend: {},
},
plugins: [],
};