sparkletown/sparkle

View on GitHub
src/theme/theme.ts

Summary

Maintainability
A
0 mins
Test Coverage
const colors = {
  blue: "#375a7f",
  pink: "#e83e8c",
  red: "#E74C3C",
  orange: "#fd7e14",
  yellow: "#F39C12",
  green: "#00bc8c",
  teal: "#20c997",
  cyan: "#3498DB",
  white: "#fff",
  gray: "#1a1d24",
  grayDark: "#303030",
  primary: "#7c46fb",
  secondary: "#444",
  success: "#00bc8c",
  info: "#3498DB",
  warning: "#F39C12",
  danger: "#E74C3C",
  light: "#adb5bd",
  dark: "#303030",
};

const dimensions = {
  borderRadius: "28px",
  topBarHeight: "66px",
};

export const theme = {
  colors,
  dimensions,
};