diff options
author | Sascha <GlancingMind@outlook.com> | 2021-03-02 17:13:11 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-03-04 20:53:28 +0100 |
commit | 9f6dcc887d31ce5c9cb5438b4e0e6c834c9d81d6 (patch) | |
tree | 3e517c104e73d1f9287da5156c7753ab52fd0df0 /webui/src/themes/DefaultDark.ts | |
parent | 548febcbc7af50e8f33c393d481fa253f27aa795 (diff) | |
download | git-bug-9f6dcc887d31ce5c9cb5438b4e0e6c834c9d81d6.tar.gz |
Use proper semantic color values
Adjust header colors on light theme
- Use adjusted background-color for header instead of text.hint.
- Use slightly darker secondary font color for better readability against the
head background color.
Use more semantic theme colors for bug list
Use more semantic theme colors for bug messages
Fix usage of text hint for filter header
Diffstat (limited to 'webui/src/themes/DefaultDark.ts')
-rw-r--r-- | webui/src/themes/DefaultDark.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/webui/src/themes/DefaultDark.ts b/webui/src/themes/DefaultDark.ts index 8d961caa..fe31f211 100644 --- a/webui/src/themes/DefaultDark.ts +++ b/webui/src/themes/DefaultDark.ts @@ -5,6 +5,14 @@ const defaultDarkTheme = createMuiTheme({ type: 'dark', primary: { main: '#263238', + light: '#525252', + }, + error: { + main: '#f44336', + dark: '#ff4949', + }, + info: { + main: '#2a393e', }, }, }); |