-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
52 lines (46 loc) · 1.48 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/flowbite/**/*.js"
],
theme: {
extend: {
colors: {
'custom-purple': '#ac8bf1',
'custom-gray': '#ececec',
'angular-color': '#fa2987',
'spring-color': '#60b831',
'html-color': '#e44d24',
'css-color': '#2652e6',
'javascript-color': '#e8c931',
'java-color': '#e77100',
'csharp-color': '#953dac',
'tailwind-color': '#46abb3',
'entity-color': '#7a3c89',
'bootstrap-color': '#8012fa',
'typescript-color': '#2d79c7',
'mysql-color': '#084a68',
'wpf-color': '#0091e8',
'windowsforms-color': '#0081c2',
'thymeleaf-color': '#005f0f',
'react-color': '#66dbfb',
'next-color': '#181818',
'petCare-color': '#56d4e0',
'pendu-color': '#ffffff',
'gradeFlow-color': '#e5e7eb',
'cliniqueClic-color': '#618cc6',
'parrotMentor-color': '#c1a5f9',
'lalalandYoga-color': '#ffffff',
},
backgroundImage: {
'photo': "url('/images/photoLinkedIn.jpg')",
},
display: ["group-hover"]
},
},
plugins: [require('flowbite/plugin')],
});