Skip to content

Commit

Permalink
fix(style): outline colors
Browse files Browse the repository at this point in the history
  • Loading branch information
njfamirm committed Jul 15, 2023
1 parent 901ba7f commit e948464
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions ui/style/lib/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export const colorTheme: Config['theme'] = {
onPrimaryContainerDark: refColors.refPrimary[90],

/**
* secondary colors
* Secondary colors
*/
secondary: 'rgba(var(--sys-color-secondary), <alpha-value>)',
secondaryLight: refColors.refSecondary[40],
Expand Down Expand Up @@ -201,7 +201,6 @@ export const colorTheme: Config['theme'] = {

/**
* Surface variant colors
* FIXME: !
*/
surfaceVariant: 'rgba(var(--sys-color-surface-variant), <alpha-value>)',
surfaceVariantLight: refColors.refNeutral[90],
Expand All @@ -212,13 +211,16 @@ export const colorTheme: Config['theme'] = {
onSurfaceVariantDark: refColors.refNeutral[80],

/**
* Outline variant colors
* Outline colors
*/
outlineVariant: 'rgba(var(--sys-color-outline-variant), <alpha-value>)',
outline: 'rgba(var(--sys-color-outline), <alpha-value>)',
outlineLight: refColors.refNeutral[50],
outlineDark: refColors.refNeutral[60],

onOutlineVariant: 'rgba(var(--sys-color-on-outline-variant), <alpha-value>)',
/**
* Outline variant colors
*/
outlineVariant: 'rgba(var(--sys-color-outline-variant), <alpha-value>)',
outlineVariantLight: refColors.refNeutral[80],
outlineVariantDark: refColors.refNeutral[30],

Expand Down

0 comments on commit e948464

Please sign in to comment.