Font Color to Background Color

This commit is contained in:
Chris Kent 2019-08-16 16:12:55 -04:00 committed by GitHub
parent dbe9b52c1c
commit adc9fbeb13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ export default class BasicSectionBackgroundExample extends React.Component<IBasi
const { semanticColors }: IReadonlyTheme = this.props.themeVariant; const { semanticColors }: IReadonlyTheme = this.props.themeVariant;
return ( return (
<div style={{color: semanticColors.bodyText}}> <div style={{backgroundColor: semanticColors.bodyBackground}}>
<p>This React web part has support for section backgrounds and will inherit its background from the section</p> <p>This React web part has support for section backgrounds and will inherit its background from the section</p>
</div> </div>
); );