Skip to content

Commit

Permalink
feat: ColorProvider can customize color, exclude tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
bre97-web committed Aug 29, 2024
1 parent 9b616b4 commit 40cd5a1
Show file tree
Hide file tree
Showing 4 changed files with 253 additions and 357 deletions.
59 changes: 59 additions & 0 deletions src/declaration/material-design-theme-token.interface.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@

export interface IMaterialDesignThemeTokens {
primaryPaletteKeyColor: string
secondaryPaletteKeyColor: string
tertiaryPaletteKeyColor: string
neutralPaletteKeyColor: string
neutralVariantPaletteKeyColor: string
background: string
onBackground: string
surface: string
surfaceDim: string
surfaceBright: string
surfaceContainerLowest: string
surfaceContainerLow: string
surfaceContainer: string
surfaceContainerHigh: string
surfaceContainerHighest: string
onSurface: string
surfaceVariant: string
onSurfaceVariant: string
inverseSurface: string
inverseOnSurface: string
outline: string
outlineVariant: string
shadow: string
scrim: string
surfaceTint: string
primary: string
onPrimary: string
primaryContainer: string
onPrimaryContainer: string
inversePrimary: string
secondary: string
onSecondary: string
secondaryContainer: string
onSecondaryContainer: string
tertiary: string
onTertiary: string
tertiaryContainer: string
onTertiaryContainer: string
error: string
onError: string
errorContainer: string
onErrorContainer: string
primaryFixed: string
primaryFixedDim: string
onPrimaryFixed: string
onPrimaryFixedVariant: string
secondaryFixed: string
secondaryFixedDim: string
onSecondaryFixed: string
onSecondaryFixedVariant: string
tertiaryFixed: string
tertiaryFixedDim: string
onTertiaryFixed: string
onTertiaryFixedVariant: string
}

// export interface IMaterialDesignThemeToken
Loading

0 comments on commit 40cd5a1

Please sign in to comment.