Skip to content

Commit e3adcfe

Browse files
authored
fix(material/core): use full theme config definitions to prebuilt themes (#25656)
1 parent c14d176 commit e3adcfe

File tree

8 files changed

+24
-8
lines changed

8 files changed

+24
-8
lines changed

src/material/core/theming/prebuilt/deeppurple-amber.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ $theme: theming.define-light-theme((
1515
color: (
1616
primary: $primary,
1717
accent: $accent,
18-
)
18+
),
19+
typography: null,
20+
density: 0,
1921
));
2022

2123
// Include all theme styles for the components.

src/material/core/theming/prebuilt/indigo-pink.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ $theme: theming.define-light-theme((
1515
color: (
1616
primary: $primary,
1717
accent: $accent
18-
)
18+
),
19+
typography: null,
20+
density: 0,
1921
));
2022

2123
// Include all theme styles for the components.

src/material/core/theming/prebuilt/pink-bluegrey.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ $theme: theming.define-dark-theme((
1515
color: (
1616
primary: $primary,
1717
accent: $accent
18-
)
18+
),
19+
typography: null,
20+
density: 0,
1921
));
2022

2123
// Include all theme styles for the components.

src/material/core/theming/prebuilt/purple-green.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ $theme: theming.define-dark-theme((
1515
color: (
1616
primary: $primary,
1717
accent: $accent
18-
)
18+
),
19+
typography: null,
20+
density: 0,
1921
));
2022

2123
// Include all theme styles for the components.

src/material/legacy-core/theming/prebuilt/deeppurple-amber.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ $theme: theming.define-light-theme((
1515
color: (
1616
primary: $primary,
1717
accent: $accent,
18-
)
18+
),
19+
typography: null,
20+
density: 0,
1921
));
2022

2123
// Include all theme styles for the components.

src/material/legacy-core/theming/prebuilt/indigo-pink.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ $theme: theming.define-light-theme((
1515
color: (
1616
primary: $primary,
1717
accent: $accent
18-
)
18+
),
19+
typography: null,
20+
density: 0,
1921
));
2022

2123
// Include all theme styles for the components.

src/material/legacy-core/theming/prebuilt/pink-bluegrey.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ $theme: theming.define-dark-theme((
1515
color: (
1616
primary: $primary,
1717
accent: $accent
18-
)
18+
),
19+
typography: null,
20+
density: 0,
1921
));
2022

2123
// Include all theme styles for the components.

src/material/legacy-core/theming/prebuilt/purple-green.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ $theme: theming.define-dark-theme((
1515
color: (
1616
primary: $primary,
1717
accent: $accent
18-
)
18+
),
19+
typography: null,
20+
density: 0,
1921
));
2022

2123
// Include all theme styles for the components.

0 commit comments

Comments
 (0)