@@ -21,7 +21,7 @@ const Image = themedStyled('img', props => ({
2121} ) ) ;
2222
2323export const Caption = themedStyled ( 'figcaption' , ( { $theme} ) => ( {
24- color : $theme . colors . foregroundAlt ,
24+ color : $theme . colors . contentSecondary ,
2525 fontFamily : $theme . typography . font100 . fontFamily ,
2626 fontSize : $theme . sizing . scale500 ,
2727 fontWeight : 300 ,
@@ -48,22 +48,22 @@ export const Demo = themedStyled('iframe', {
4848} ) ;
4949
5050const Tagline = themedStyled ( 'span' , ( { $theme} ) => ( {
51- color : $theme . colors . foregroundAlt ,
51+ color : $theme . colors . contentSecondary ,
5252 fontFamily : $theme . typography . font100 . fontFamily ,
5353 fontSize : $theme . sizing . scale800 ,
5454 fontWeight : 300 ,
5555} ) ) ;
5656
5757const AuthorLink = themedStyled ( 'a' , ( { $theme} ) => ( {
58- color : $theme . colors . foregroundAlt ,
58+ color : $theme . colors . contentSecondary ,
5959 fontFamily : $theme . typography . font100 . fontFamily ,
6060 ':hover' : {
61- color : $theme . colors . foreground ,
61+ color : $theme . colors . contentPrimary ,
6262 } ,
6363} ) ) ;
6464
6565const ArticleDate = themedStyled ( 'span' , ( { $theme} ) => ( {
66- color : $theme . colors . foregroundAlt ,
66+ color : $theme . colors . contentSecondary ,
6767} ) ) ;
6868
6969export const Meta = ( {
@@ -121,7 +121,7 @@ export const Meta = ({
121121 overrides = { {
122122 Block : {
123123 style : ( { $theme} ) => ( {
124- color : $theme . colors . foregroundAlt ,
124+ color : $theme . colors . contentSecondary ,
125125 fontFamily : $theme . typography . font100 . fontFamily ,
126126 margin : `${ $theme . sizing . scale400 } 0` ,
127127 } ) ,
0 commit comments