-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (54 loc) · 1.32 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./generated/*.html",
],
theme: {
extend: {
colors: {
'links': '#0ff',
'blog-links': 'rgb(0, 174, 255)',
'links-hover': '#7dff7d',
'blog-links-hover': '#62ff62',
'background': 'black',
'text': 'rgb(205, 205, 205)',
'light': 'white',
'text-light': 'black',
'almost-black': 'rgba(7, 7, 7)',
'almost-black-2': 'rgba(9, 9, 9)',
'almost-black-3': 'rgba(15, 15, 35)',
'almost-black-4': 'rgba(13, 13, 13)',
'almost-blue': 'rgba(15, 15, 65)',
'h1-h3-article-color': 'rgb(129, 193, 253)',
'h2-article-color': 'rgb(97, 115, 255)',
'code-block': 'rgb(9, 8, 13)',
'quote-block': 'rgb(39, 38, 43)',
'playlists-mobile': '#9ce5f7',
},
fontSize: {
'xxs': [
'.6rem', {
lineHeight: '0.7rem',
}
],
},
screens: {
'xs': '374px',
},
}
},
plugins: [
function({ addComponents }) {
addComponents({
'.custom-li-marker': {
listStyleType: 'none',
'&::before': {
content: "'🔗 '",
// Add other styles if needed
},
},
})
},
require('daisyui'),
],
}