utxo22-web/tailwind.config.cjs

26 řádky
526 B
JavaScript
Surový Normální zobrazení Historie

2022-04-04 06:11:39 +02:00
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
2022-04-06 17:33:02 +02:00
extend: {
colors: {
custom: {
blue: '#4D96FF',
green: '#6BCB77',
yellow: '#FFD93D',
red: '#FF6B6B',
},
blue: {
web: '#393F67',
'web-bg': '#191B2E',
'web-light': '#DBE8F4',
utxo: '#00A1FE'
}
},
backgroundImage: {
'utxo-gradient': 'linear-gradient(130deg,#FF634D,#00A1FE)'
}
}
2022-04-04 06:11:39 +02:00
},
plugins: [],
}