-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.cjs
24 lines (24 loc) · 1.05 KB
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/index.ts'],
theme: {
extend: {
colors: {
'sonolus-main': 'rgba(0, 0, 32, 1)',
'sonolus-alternative-0': 'rgba(13, 0, 31, 1)',
'sonolus-alternative-1': 'rgba(0, 17, 29, 1)',
'sonolus-glow': 'rgba(255, 255, 255, 1)',
'sonolus-ui-surface': 'rgba(0, 0, 0, 1)',
'sonolus-ui-text-normal': 'rgba(255, 255, 255, 1)',
'sonolus-ui-text-disabled': 'rgba(255, 255, 255, 0.25)',
'sonolus-ui-button-normal': 'rgba(255, 255, 255, 0.125)',
'sonolus-ui-button-highlighted': 'rgba(255, 255, 255, 0.25)',
'sonolus-ui-button-pressed': 'rgba(255, 255, 255, 0.0625)',
'sonolus-ui-button-disabled': 'rgba(255, 255, 255, 0.03125)',
'sonolus-success': 'rgba(72, 199, 142, 1)',
'sonolus-warning': 'rgba(241, 70, 104, 1)',
},
},
},
plugins: [],
}