pinafore/routes/_static/themes.js

83 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-01-14 01:41:15 +00:00
const themes = [
{
name: 'default',
2018-09-23 18:18:02 +00:00
label: 'Royal (default)',
dark: false,
color: 'royalblue'
2018-01-14 01:41:15 +00:00
},
{
name: 'scarlet',
2018-09-23 18:18:02 +00:00
label: 'Scarlet',
dark: false,
color: '#e04e41'
2018-01-14 01:41:15 +00:00
},
2018-01-14 03:17:41 +00:00
{
name: 'seafoam',
2018-09-23 18:18:02 +00:00
label: 'Seafoam',
dark: false,
color: '#177380'
2018-01-14 03:17:41 +00:00
},
2018-01-14 01:41:15 +00:00
{
name: 'hotpants',
2018-09-23 18:18:02 +00:00
label: 'Hotpants',
dark: false,
color: 'hotpink'
2018-01-14 03:17:41 +00:00
},
{
name: 'oaken',
2018-09-23 18:18:02 +00:00
label: 'Oaken',
dark: false,
color: 'saddlebrown'
2018-01-14 03:17:41 +00:00
},
{
name: 'majesty',
2018-09-23 18:18:02 +00:00
label: 'Majesty',
dark: false,
color: 'blueviolet'
2018-01-21 07:26:48 +00:00
},
{
name: 'gecko',
2018-09-23 18:18:02 +00:00
label: 'Gecko',
dark: false,
color: '#4ab92f'
},
{
name: 'ozark',
2018-09-23 18:18:02 +00:00
label: 'Ozark',
dark: true,
color: '#5263af'
},
{
name: 'cobalt',
2018-09-23 18:18:02 +00:00
label: 'Cobalt',
dark: true,
color: '#08439b'
},
{
name: 'sorcery',
2018-09-23 18:18:02 +00:00
label: 'Sorcery',
dark: true,
color: '#ae91e8'
},
{
name: 'punk',
2018-09-23 18:18:02 +00:00
label: 'Punk',
dark: true,
color: '#e04e41'
},
{
name: 'riot',
2018-09-23 18:18:02 +00:00
label: 'Riot',
dark: true,
color: 'hotpink'
},
{
name: 'hacker',
2018-09-23 18:18:02 +00:00
label: 'Hacker',
dark: true,
color: '#4ab92f'
2018-01-14 01:41:15 +00:00
}
]
2018-02-09 06:29:29 +00:00
export { themes }