mirror of
https://github.com/PretendoNetwork/website.git
synced 2025-04-02 11:11:50 -04:00
35 lines
700 B
JavaScript
35 lines
700 B
JavaScript
module.exports = {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
purple: {
|
|
900: '#131733',
|
|
800: '#1B1F3B',
|
|
700: '#23274A',
|
|
600: '#373C65',
|
|
500: '#494F81',
|
|
200: '#8990C1',
|
|
150: '#A1A8D9',
|
|
100: '#CAC1F5',
|
|
50: '#fff',
|
|
},
|
|
accent: {
|
|
900: '#673DB6',
|
|
800: '#9D6FF3',
|
|
700: '#A185D6',
|
|
600: '#CAB1FB',
|
|
},
|
|
green: {
|
|
900: '#37a985',
|
|
800: '#59c9a5',
|
|
},
|
|
red: {
|
|
900: '#a9375b',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Poppins', 'Helvetica', 'Arial', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
};
|