Skip to content

Commit

Permalink
fix(material/core): add typography to prebuilt themes (#25696)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewseguin committed Sep 25, 2022
1 parent 1e969dd commit c35763b
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/material/core/theming/prebuilt/deeppurple-amber.scss
Expand Up @@ -2,7 +2,7 @@
@use '../../core';
@use '../palette';
@use '../theming';

@use '../../typography/all-typography';

// Include non-theme styles for core.
@include core.core();
Expand All @@ -16,7 +16,7 @@ $theme: theming.define-light-theme((
primary: $primary,
accent: $accent,
),
typography: null,
typography: all-typography.define-typography-config(),
density: 0,
));

Expand Down
3 changes: 2 additions & 1 deletion src/material/core/theming/prebuilt/indigo-pink.scss
Expand Up @@ -2,6 +2,7 @@
@use '../../core';
@use '../palette';
@use '../theming';
@use '../../typography/all-typography';


// Include non-theme styles for core.
Expand All @@ -16,7 +17,7 @@ $theme: theming.define-light-theme((
primary: $primary,
accent: $accent
),
typography: null,
typography: all-typography.define-typography-config(),
density: 0,
));

Expand Down
3 changes: 2 additions & 1 deletion src/material/core/theming/prebuilt/pink-bluegrey.scss
Expand Up @@ -2,6 +2,7 @@
@use '../../core';
@use '../palette';
@use '../theming';
@use '../../typography/all-typography';


// Include non-theme styles for core.
Expand All @@ -16,7 +17,7 @@ $theme: theming.define-dark-theme((
primary: $primary,
accent: $accent
),
typography: null,
typography: all-typography.define-typography-config(),
density: 0,
));

Expand Down
3 changes: 2 additions & 1 deletion src/material/core/theming/prebuilt/purple-green.scss
Expand Up @@ -2,6 +2,7 @@
@use '../../core';
@use '../palette';
@use '../theming';
@use '../../typography/all-typography';


// Include non-theme styles for core.
Expand All @@ -16,7 +17,7 @@ $theme: theming.define-dark-theme((
primary: $primary,
accent: $accent
),
typography: null,
typography: all-typography.define-typography-config(),
density: 0,
));

Expand Down
Expand Up @@ -2,6 +2,7 @@
@use '../../core';
@use '../../../core/theming/palette';
@use '../../../core/theming/theming';
@use '../../../core/typography/all-typography';


// Include non-theme styles for core.
Expand All @@ -16,7 +17,7 @@ $theme: theming.define-light-theme((
primary: $primary,
accent: $accent,
),
typography: null,
typography: all-typography.define-typography-config(),
density: 0,
));

Expand Down
3 changes: 2 additions & 1 deletion src/material/legacy-core/theming/prebuilt/indigo-pink.scss
Expand Up @@ -2,6 +2,7 @@
@use '../../core';
@use '../../../core/theming/palette';
@use '../../../core/theming/theming';
@use '../../../core/typography/all-typography';


// Include non-theme styles for core.
Expand All @@ -16,7 +17,7 @@ $theme: theming.define-light-theme((
primary: $primary,
accent: $accent
),
typography: null,
typography: all-typography.define-typography-config(),
density: 0,
));

Expand Down
3 changes: 2 additions & 1 deletion src/material/legacy-core/theming/prebuilt/pink-bluegrey.scss
Expand Up @@ -2,6 +2,7 @@
@use '../../core';
@use '../../../core/theming/palette';
@use '../../../core/theming/theming';
@use '../../../core/typography/all-typography';


// Include non-theme styles for core.
Expand All @@ -16,7 +17,7 @@ $theme: theming.define-dark-theme((
primary: $primary,
accent: $accent
),
typography: null,
typography: all-typography.define-typography-config(),
density: 0,
));

Expand Down
3 changes: 2 additions & 1 deletion src/material/legacy-core/theming/prebuilt/purple-green.scss
Expand Up @@ -2,6 +2,7 @@
@use '../../core';
@use '../../../core/theming/palette';
@use '../../../core/theming/theming';
@use '../../../core/typography/all-typography';


// Include non-theme styles for core.
Expand All @@ -16,7 +17,7 @@ $theme: theming.define-dark-theme((
primary: $primary,
accent: $accent
),
typography: null,
typography: all-typography.define-typography-config(),
density: 0,
));

Expand Down

0 comments on commit c35763b

Please sign in to comment.