client: updates

* work on groups ui
* move settings to its own page
* other fixes and refactoring
This commit is contained in:
Philipinho
2024-04-04 22:19:15 +01:00
parent cab5e67055
commit 1412f1d982
64 changed files with 1770 additions and 474 deletions

View File

@ -1,5 +1,21 @@
import { createTheme } from '@mantine/core';
import { createTheme, MantineColorsTuple } from '@mantine/core';
const blue: MantineColorsTuple = [
'#e8f3ff',
'#d0e3ff',
'#9ec4fc',
'#69a3fb',
'#4087fa',
'#2975fa',
'#0052cc', //1c6cfb
'#0f5be1',
'#0051c9',
'#0046b1',
];
export const theme = createTheme({
colors: {
blue,
},
});