aboutsummaryrefslogtreecommitdiff
path: root/src/ui/theme/themes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/theme/themes.ts')
-rw-r--r--src/ui/theme/themes.ts37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/ui/theme/themes.ts b/src/ui/theme/themes.ts
new file mode 100644
index 0000000..94c87f6
--- /dev/null
+++ b/src/ui/theme/themes.ts
@@ -0,0 +1,37 @@
+import { defineThemes } from './theme.models';
+
+export const { themes: appThemes, useTheme: useAppTheme } = defineThemes({
+ light: {
+ text: {
+ baseColor: 'rgb(51, 54, 57)',
+ },
+
+ primary: {
+ color: '#18a058',
+ colorHover: '#1ea54c',
+ colorPressed: '#0C7A43',
+ },
+
+ warning: {
+ color: '#f59e0b',
+ colorHover: '#f59e0b',
+ colorPressed: '#f59e0b',
+ },
+ },
+ dark: {
+ text: {
+ baseColor: 'rgba(255, 255, 255, 0.82)',
+ },
+
+ primary: {
+ color: '#1ea54c',
+ colorHover: '#36AD6A',
+ colorPressed: '#0C7A43',
+ },
+ warning: {
+ color: '#f59e0b',
+ colorHover: '#f59e0b',
+ colorPressed: '#f59e0b',
+ },
+ },
+});