-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
64 lines (63 loc) · 1.86 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
const path = require('path');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
path.join(__dirname, "/src/jsMain/kotlin/**/*.kt"),
path.join(__dirname, "/src/jsMain/resources/**/*.html"),
],
theme: {
extend: {
colors: {
transparent: 'transparent',
white: '#ffffff',
dark: {
700: '#111826',
900: '#050b1c',
},
gray: {
500: '#848a9c',
700: '#464a59',
900: '#1c2533',
},
border: {
dark: '#111927',
soft: 'rgb(255 255 255 / 0.02)',
},
yellow: {
DEFAULT: '#ffd12e',
hover: '#ffb82e',
gradient: {
start: '#ffe176',
end: '#fff1bd'
}
},
hover: {
DEFAULT: 'rgb(255 255 255 / 0.03)',
},
soft: {
DEFAULT: 'rgb(255 255 255 / 0.05)'
},
green: {
DEFAULT: '#13ff77',
soft: 'rgb(41 255 107 / 0.1)'
},
pruple: {
DEFAULT: '#8829ff',
soft: 'rgb(136 41 255 / 0.1)'
},
ref: {
DEFAULT: '#ff2968',
soft: ' rgb(255 41 104 / 0.1)'
},
aqua: {
DEFAULT: '#2af1ff',
}
},
fontFamily: {
roboto: "'Roboto', sans-serif",
raleway: "'Raleway', sans-serif",
},
},
},
plugins: [],
}