JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "css-theme.ts"

Full Path: /home/markqprx/iniasli.pro/client/ui/themes/css-theme.ts
File size: 352 bytes
MIME-type: text/plain
Charset: utf-8

import {FontConfig} from '@common/http/value-lists';

export interface CssTheme {
  id: number | string;
  name: string;
  is_dark?: boolean;
  default_dark?: boolean;
  default_light?: boolean;
  values: CssThemeColors;
  font?: FontConfig;
  created_at?: string;
  updated_at?: string;
}

export interface CssThemeColors {
  [key: string]: string;
}