-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
26 lines (26 loc) · 992 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
// https://uicolors.app/edit?sv1=malibu:50-ecfdff/100-cff8fe/200-a4effd/300-66e2fa/400-21cbef/500-05add5/600-078ab3/700-0d6f91/800-145a76/900-154a64;flush-orange:50-fffaec/100-fff4d3/200-ffe5a5/300-ffd06d/400-ffb032/500-ff960a/600-ff7f02/700-cc5c02/800-a1470b/900-823c0c
'malibu': {
50: '#ecfdff',
100: '#cff8fe',
200: '#a4effd',
300: '#66e2fa',
400: '#21cbef',
500: '#05add5',
600: '#078ab3',
700: '#0d6f91',
800: '#145a76',
900: '#154a64',
},
}
},
},
plugins: [],
}