-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
55 lines (55 loc) · 1.83 KB
/
tailwind.config.js
File metadata and controls
55 lines (55 loc) · 1.83 KB
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
45
46
47
48
49
50
51
52
53
54
55
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
colors: {
"white": "hsl(0, 0%, 100%)",
"black": "hsl(209, 26%, 16%)",
"blue": "hsl(207, 52%, 64%)",
"blueTransparent": "hsla(207, 52%, 64%, 0.7)",
"yellow": "hsl(47, 100%, 62%)",
"yellowTransparent": "hsla(47, 100%, 62%, 0.7)",
"lightGray": "hsl(0, 0%, 96%)",
"grayishBlue": "hsl(217, 19%, 35%)",
"scripting": "hsl(227, 37%, 79%)",
"scriptingTransparent": "hsla(227, 37%, 79%, 0.7)",
"webDev": "hsl(30, 90%, 55%)",
"webDevTransparent": "hsla(30, 90%, 55%, 0.7)",
"gui": "hsl(350, 83%, 55%)",
"guiTransparent": "hsla(350, 83%, 55%, 0.7)",
"game": "hsl(196, 79%, 56%)",
"gameTransparent": "hsla(196, 79%, 56%, 0.7)",
"dataScience": "hsl(44, 97%, 49%)",
"dataScienceTransparent": "hsla(44, 97%, 49%, 0.7)",
"api": "hsl(79, 66%, 59%)",
"apiTransparent": "hsla(79, 66%, 59%, 0.7)",
"auto": "hsl(227, 45%, 44%)",
"autoTransparent": "hsla(227, 45%, 44%, 0.7)",
"debugging": "hsl(240, 10%, 16%)",
"debuggingTransparent": "hsla(240, 10%, 16%, 0.3)",
"webScraping": "hsl(303, 66%, 61%)",
"webScrapingTransparent": "hsla(303, 66%, 61%, 0.7)",
"design": "hsl(174, 66%, 39%)",
"designTransparent": "hsla(174, 66%, 39%, 0.7)",
"level1": "#00735D",
"level2": "#364B44",
"level3": "#98B0A8",
"level4": "#6A5D95",
"level5": "#1F6A9C",
"level6": "#609DD3",
},
extend: {
fontFamily: {
sourceSansProRegular: "SourceSansPro-Regular",
sourceSansProBold: "SourceSansPro-Bold",
},
},
},
plugins: [
require("daisyui"),
],
}