rename default theme preset

This commit is contained in:
zombieFox
2021-08-27 14:23:00 +01:00
parent 7c96f9563b
commit e7ab38d08d
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import { state } from '../../state'; import { state } from '../../state';
import { appName } from '../../appName'; import { appName } from '../../appName';
export const nighttab = { export const app = {
name: appName + ' (default)', name: appName + ' (default)',
color: state.get.default().theme.color, color: state.get.default().theme.color,
accent: { hsl: state.get.default().theme.accent.hsl, rgb: state.get.default().theme.accent.rgb }, accent: { hsl: state.get.default().theme.accent.hsl, rgb: state.get.default().theme.accent.rgb },

View File

@ -2,6 +2,7 @@ import { state } from '../state';
import { acrid } from './acrid'; import { acrid } from './acrid';
import { aerial } from './aerial'; import { aerial } from './aerial';
import { app } from './app';
import { azure } from './azure'; import { azure } from './azure';
import { bean } from './bean'; import { bean } from './bean';
import { black } from './black'; import { black } from './black';
@ -22,7 +23,6 @@ import { macaroon } from './macaroon';
import { marker } from './marker'; import { marker } from './marker';
import { midnight } from './midnight'; import { midnight } from './midnight';
import { mint } from './mint'; import { mint } from './mint';
import { nighttab } from './nighttab';
import { neon } from './neon'; import { neon } from './neon';
import { nord } from './nord'; import { nord } from './nord';
import { obsidian } from './obsidian'; import { obsidian } from './obsidian';
@ -50,7 +50,7 @@ const themePreset = {};
themePreset.get = () => { themePreset.get = () => {
return [ return [
nighttab, app,
black, black,
white, white,
acrid, acrid,