aboutsummaryrefslogtreecommitdiff
path: root/src/ui/c-card/c-card.theme.ts
blob: c9cdd6b7160562dff2d401f09c2052838f83a470 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { defineThemes } from '../theme/theme.models';

export const { useTheme } = defineThemes({
  dark: {
    backgroundColor: '#232323',
    borderColor: '#282828',
  },
  light: {
    backgroundColor: '#ffffff',
    borderColor: '#efeff5',
  },
});