diff options
Diffstat (limited to 'thallium-frontend/src/themes.ts')
| -rw-r--r-- | thallium-frontend/src/themes.ts | 24 | 
1 files changed, 12 insertions, 12 deletions
diff --git a/thallium-frontend/src/themes.ts b/thallium-frontend/src/themes.ts index 010300e..92a8597 100644 --- a/thallium-frontend/src/themes.ts +++ b/thallium-frontend/src/themes.ts @@ -14,20 +14,20 @@ interface ThemesStore {  const themes: ThemesStore = {      light: { -        backgroundColor: '#f0f0f0', -        textColor: '#000', -        borderColor: '#ccc', -        linkColor: '#7272ff', -        cardBackgroundColor: '#ebebeb', -        cardShadow: '#d0d0d0', +        backgroundColor: "#f0f0f0", +        textColor: "#000", +        borderColor: "#ccc", +        linkColor: "#7272ff", +        cardBackgroundColor: "#ebebeb", +        cardShadow: "#d0d0d0",      },      dark: { -        backgroundColor: '#333', -        textColor: '#fff', -        borderColor: '#949494', -        linkColor: '#8f8fff', -        cardBackgroundColor: '#2c2c2c', -        cardShadow: '#242323', +        backgroundColor: "#333", +        textColor: "#fff", +        borderColor: "#949494", +        linkColor: "#8f8fff", +        cardBackgroundColor: "#2c2c2c", +        cardShadow: "#242323",      },  };  |