diff options
Diffstat (limited to 'src/ui/c-card/c-card.theme.ts')
-rw-r--r-- | src/ui/c-card/c-card.theme.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ui/c-card/c-card.theme.ts b/src/ui/c-card/c-card.theme.ts new file mode 100644 index 0000000..c9cdd6b --- /dev/null +++ b/src/ui/c-card/c-card.theme.ts @@ -0,0 +1,12 @@ +import { defineThemes } from '../theme/theme.models'; + +export const { useTheme } = defineThemes({ + dark: { + backgroundColor: '#232323', + borderColor: '#282828', + }, + light: { + backgroundColor: '#ffffff', + borderColor: '#efeff5', + }, +}); |