-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
44 lines (43 loc) · 981 Bytes
/
tailwind.config.cjs
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
// const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
sans: ['"Noto Sans Arabic"', ...require('tailwindcss/defaultTheme.js').fontFamily.sans],
serif: ['Inter', ...require('tailwindcss/defaultTheme.js').fontFamily.serif]
}
}
},
plugins: [require('daisyui')],
daisyui: {
themes: [
{
telegram: {
primary: '#2481cc',
secondary: '#7d7f81',
accent: '#4ca3e2',
neutral: '#181A2A',
'base-100': '#ffffff',
info: '#2392e7',
success: '#7bc862',
warning: '#ffcd6a',
error: '#e17076'
},
telegramDark: {
primary: '#1c93e3',
secondary: '#7d7f81',
accent: '#64b5ef',
neutral: '#1e1e1e',
'base-100': '#111111',
info: '#64b5ef',
success: '#7cc766',
warning: '#e9b653',
error: '#e0645e'
}
}
],
rtl: true
}
};