Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanbsmith/b7a07f19a16a676e43d906e97c49b582 to your computer and use it in GitHub Desktop.
Save alanbsmith/b7a07f19a16a676e43d906e97c49b582 to your computer and use it in GitHub Desktop.
structuring-our-styled-components-example-modifiers
const modifierConfig = {
darkGreyText: ({ theme }) => `
color: ${theme.colors.base.text};
`,
midGreyText: ({ theme }) => `
color: ${theme.colors.base.textLight};
`,
uppercase: () => `
text-transform: uppercase;
`,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment