Skip to content

Commit 5f64f55

Browse files
committed
chore: rename GG EZ theme to GGEZ
1 parent 545930b commit 5f64f55

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
'neon': { '--bg': '#06000a', '--ui-bg': '#0a0012', '--text': '#eeddff', '--text-muted': '#9977bb' },
133133
'crt': { '--bg': '#020a02', '--ui-bg': '#051005', '--text': '#44dd66', '--text-muted': '#22aa44' },
134134
'legacy': { '--bg': '#c0c0c0', '--ui-bg': '#c0c0c0', '--text': '#000000', '--text-muted': '#222222', '--border': '#808080', '--warning': '#cc6600' },
135-
'gg-ez': { '--bg': '#050505', '--ui-bg': '#0a0a0a', '--text': '#ffffff', '--text-muted': '#bbbbbb' },
135+
'ggez': { '--bg': '#050505', '--ui-bg': '#0a0a0a', '--text': '#ffffff', '--text-muted': '#bbbbbb' },
136136
};
137137
if (minimal[id]) {
138138
vars = minimal[id];
@@ -155,7 +155,7 @@
155155
if (id === 'light' || id === 'legacy' || (vars && vars['--bg'] && parseInt(vars['--bg'].replace('#','').slice(0,2), 16) > 128)) {
156156
document.documentElement.style.setProperty('color-scheme', 'light');
157157
}
158-
var styles = { 'legacy': 'legacy', 'gg-ez': 'rgb', 'neon': 'neon', 'crt': 'crt' };
158+
var styles = { 'legacy': 'legacy', 'ggez': 'rgb', 'neon': 'neon', 'crt': 'crt' };
159159
if (styles[id]) {
160160
document.documentElement.dataset.themeStyle = styles[id];
161161
}

src/themes/rgb.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import type { ThemeDef } from './types';
22

33
export const THEME_RGB: ThemeDef = {
4-
id: 'gg-ez',
5-
name: 'GG EZ',
4+
id: 'ggez',
5+
name: 'GGEZ',
66
builtin: true,
77
colorScheme: 'dark',
88
themeStyle: 'rgb',

0 commit comments

Comments
 (0)