aboutsummaryrefslogtreecommitdiff
path: root/src/ui/c-input-text/c-input-text.theme.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/c-input-text/c-input-text.theme.ts')
-rw-r--r--src/ui/c-input-text/c-input-text.theme.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/ui/c-input-text/c-input-text.theme.ts b/src/ui/c-input-text/c-input-text.theme.ts
new file mode 100644
index 0000000..93739d4
--- /dev/null
+++ b/src/ui/c-input-text/c-input-text.theme.ts
@@ -0,0 +1,20 @@
+import { defineThemes } from '../theme/theme.models';
+
+export const { useTheme } = defineThemes({
+ dark: {
+ backgroundColor: '#333333',
+ borderColor: '#333333',
+
+ focus: {
+ backgroundColor: '#1ea54c1a',
+ },
+ },
+ light: {
+ backgroundColor: '#ffffff',
+ borderColor: '#e0e0e69e',
+
+ focus: {
+ backgroundColor: '#ffffff',
+ },
+ },
+});