DarkSemanticScheme top-level constant

SemanticColorScheme const DarkSemanticScheme

Implementation

const DarkSemanticScheme = SemanticColorScheme(
  // text & icon
  textColorPrimary: BaseColors.white2,
  textColorSecondary: BaseColors.white4,
  textColorTertiary: BaseColors.white6,
  textColorDisable: BaseColors.white7,
  textColorButton: BaseColors.white1,
  textColorButtonDisabled: BaseColors.white5,
  textColorLink: BaseColors.themeDark6,
  textColorLinkHover: BaseColors.themeDark5,
  textColorLinkActive: BaseColors.themeDark7,
  textColorLinkDisabled: BaseColors.themeDark2,
  textColorAntiPrimary: BaseColors.black2,
  textColorAntiSecondary: BaseColors.black4,
  textColorWarning: BaseColors.orangeDark6,
  textColorSuccess: BaseColors.greenDark6,
  textColorError: BaseColors.redDark6,

  // background
  bgColorTopBar: BaseColors.grayDark1,
  bgColorOperate: BaseColors.grayDark2,
  bgColorDialog: BaseColors.grayDark2,
  bgColorDialogModule: BaseColors.grayDark3,
  bgColorEntryCard: BaseColors.grayDark3,
  bgColorFunction: BaseColors.grayDark4,
  bgColorBottomBar: BaseColors.grayDark3,
  bgColorInput: BaseColors.grayDark3,
  bgColorBubbleReciprocal: BaseColors.grayDark3,
  bgColorBubbleOwn: BaseColors.themeDark7,
  bgColorDefault: BaseColors.grayDark1,
  bgColorTagMask: BaseColors.black4,
  bgColorElementMask: BaseColors.black6,
  bgColorMask: BaseColors.black4,
  bgColorMaskDisappeared: BaseColors.black8,
  bgColorMaskBegin: BaseColors.black2,
  bgColorAvatar: BaseColors.themeDark2,

  // border
  strokeColorPrimary: BaseColors.grayDark4,
  strokeColorSecondary: BaseColors.grayDark3,
  strokeColorModule: BaseColors.grayDark5,

  // shadow
  shadowColor: BaseColors.black8,

  // status
  listColorDefault: BaseColors.grayDark2,
  listColorHover: BaseColors.grayDark3,
  listColorFocused: BaseColors.themeDark2,

  // button
  buttonColorPrimaryDefault: BaseColors.themeDark6,
  buttonColorPrimaryHover: BaseColors.themeDark5,
  buttonColorPrimaryActive: BaseColors.themeDark7,
  buttonColorPrimaryDisabled: BaseColors.themeDark2,
  buttonColorSecondaryDefault: BaseColors.grayDark4,
  buttonColorSecondaryHover: BaseColors.grayDark3,
  buttonColorSecondaryActive: BaseColors.grayDark5,
  buttonColorSecondaryDisabled: BaseColors.grayDark3,
  buttonColorAccept: BaseColors.greenDark6,
  buttonColorHangupDefault: BaseColors.redDark6,
  buttonColorHangupDisabled: BaseColors.redDark2,
  buttonColorHangupHover: BaseColors.redDark5,
  buttonColorHangupActive: BaseColors.redDark7,
  buttonColorOn: BaseColors.white1,
  buttonColorOff: BaseColors.black5,

  // dropdown
  dropdownColorDefault: BaseColors.grayDark3,
  dropdownColorHover: BaseColors.grayDark4,
  dropdownColorActive: BaseColors.grayDark2,

  // scrollbar
  scrollbarColorDefault: BaseColors.white7,
  scrollbarColorHover: BaseColors.white6,

  // floating
  floatingColorDefault: BaseColors.grayDark3,
  floatingColorOperate: BaseColors.grayDark4,

  // checkbox
  checkboxColorSelected: BaseColors.themeDark5,

  // toast
  toastColorWarning: BaseColors.orangeDark2,
  toastColorSuccess: BaseColors.greenDark2,
  toastColorError: BaseColors.redDark2,
  toastColorDefault: BaseColors.themeDark2,

  // tag
  tagColorLevel1: BaseColors.accentTurquoiseDark,
  tagColorLevel2: BaseColors.themeDark5,
  tagColorLevel3: BaseColors.accentPurpleDark,
  tagColorLevel4: BaseColors.accentMagentaDark,

  // switch
  switchColorOff: BaseColors.grayDark4,
  switchColorOn: BaseColors.themeDark5,
  switchColorButton: BaseColors.white1,

  // slider
  sliderColorFilled: BaseColors.themeDark5,
  sliderColorEmpty: BaseColors.grayDark5,
  sliderColorButton: BaseColors.white1,

  // tab
  tabColorSelected: BaseColors.grayDark5,
  tabColorUnselected: BaseColors.grayDark4,
  tabColorOption: BaseColors.grayDark4,
);