Skip to content

Commit

Permalink
fix(material/core): use full theme config definitions to prebuilt the…
Browse files Browse the repository at this point in the history
…mes (#25656)
  • Loading branch information
andrewseguin committed Sep 18, 2022
1 parent c14d176 commit e3adcfe
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 8 deletions.
4 changes: 3 additions & 1 deletion src/material/core/theming/prebuilt/deeppurple-amber.scss
Expand Up @@ -15,7 +15,9 @@ $theme: theming.define-light-theme((
color: (
primary: $primary,
accent: $accent,
)
),
typography: null,
density: 0,
));

// Include all theme styles for the components.
Expand Down
4 changes: 3 additions & 1 deletion src/material/core/theming/prebuilt/indigo-pink.scss
Expand Up @@ -15,7 +15,9 @@ $theme: theming.define-light-theme((
color: (
primary: $primary,
accent: $accent
)
),
typography: null,
density: 0,
));

// Include all theme styles for the components.
Expand Down
4 changes: 3 additions & 1 deletion src/material/core/theming/prebuilt/pink-bluegrey.scss
Expand Up @@ -15,7 +15,9 @@ $theme: theming.define-dark-theme((
color: (
primary: $primary,
accent: $accent
)
),
typography: null,
density: 0,
));

// Include all theme styles for the components.
Expand Down
4 changes: 3 additions & 1 deletion src/material/core/theming/prebuilt/purple-green.scss
Expand Up @@ -15,7 +15,9 @@ $theme: theming.define-dark-theme((
color: (
primary: $primary,
accent: $accent
)
),
typography: null,
density: 0,
));

// Include all theme styles for the components.
Expand Down
Expand Up @@ -15,7 +15,9 @@ $theme: theming.define-light-theme((
color: (
primary: $primary,
accent: $accent,
)
),
typography: null,
density: 0,
));

// Include all theme styles for the components.
Expand Down
4 changes: 3 additions & 1 deletion src/material/legacy-core/theming/prebuilt/indigo-pink.scss
Expand Up @@ -15,7 +15,9 @@ $theme: theming.define-light-theme((
color: (
primary: $primary,
accent: $accent
)
),
typography: null,
density: 0,
));

// Include all theme styles for the components.
Expand Down
4 changes: 3 additions & 1 deletion src/material/legacy-core/theming/prebuilt/pink-bluegrey.scss
Expand Up @@ -15,7 +15,9 @@ $theme: theming.define-dark-theme((
color: (
primary: $primary,
accent: $accent
)
),
typography: null,
density: 0,
));

// Include all theme styles for the components.
Expand Down
4 changes: 3 additions & 1 deletion src/material/legacy-core/theming/prebuilt/purple-green.scss
Expand Up @@ -15,7 +15,9 @@ $theme: theming.define-dark-theme((
color: (
primary: $primary,
accent: $accent
)
),
typography: null,
density: 0,
));

// Include all theme styles for the components.
Expand Down

0 comments on commit e3adcfe

Please sign in to comment.