aboutsummaryrefslogtreecommitdiff
path: root/src/ui/c-link/c-link.theme.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/c-link/c-link.theme.ts')
-rw-r--r--src/ui/c-link/c-link.theme.ts39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/ui/c-link/c-link.theme.ts b/src/ui/c-link/c-link.theme.ts
new file mode 100644
index 0000000..2d90bc0
--- /dev/null
+++ b/src/ui/c-link/c-link.theme.ts
@@ -0,0 +1,39 @@
+import { defineThemes } from '../theme/theme.models';
+import { appThemes } from '../theme/themes';
+
+export const { useTheme } = defineThemes({
+ dark: {
+ default: {
+ textColor: appThemes.dark.primary.color,
+
+ hover: {
+ textColor: appThemes.dark.primary.colorHover,
+ },
+
+ pressed: {
+ textColor: appThemes.dark.primary.colorPressed,
+ },
+
+ outline: {
+ color: appThemes.dark.primary.color,
+ },
+ },
+ },
+ light: {
+ default: {
+ textColor: appThemes.light.primary.color,
+
+ hover: {
+ textColor: appThemes.light.primary.colorHover,
+ },
+
+ pressed: {
+ textColor: appThemes.light.primary.colorPressed,
+ },
+
+ outline: {
+ color: appThemes.light.primary.color,
+ },
+ },
+ },
+});