-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (45 loc) · 1.3 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
45
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'android-blue': '#4285f4',
'android-teal': '#3ddc84',
'angular-red-light': '#dd0031',
'angular-red-dark': '#c3002f',
'aws-orange': '#ff9900',
'bootstrap-purple-light': '#8b13fc',
'bootstrap-purple-dark': '#6b10f4',
'css-cyan-light': '#039be5',
'css-cyan-dark': '#0277bd',
'docker-blue': '#1d63ed',
'gimp-brown-light': '#866c55',
'gimp-brown-dark': '#77604c',
'html-orange-light': '#f16529',
'html-orange-dark': '#e44d26',
'intellij-pink': '#fe315d',
'intellij-orange': '#f97a12',
'intellij-purple': '#98509e',
'intellij-blue': '#0c7cf6',
'invision-pink': '#dc395f',
'java-orange': '#f5831f',
'java-blue': '#507a98',
'js-yellow-light': '#ffda3e',
'js-yellow-dark': '#d6ba32',
'mysql-blue': '#00618a',
'mysql-orange': '#e48e00',
'spring-green': '#6db33f',
'vscode-blue-light': '#39a7f1',
'vscode-blue-med': '#1886d0',
'vscode-blue-dark': '#1772b0',
}
},
fontFamily: {
signature: ["Whisper"],
}
},
plugins: [],
}