Skip to content
Discussion options

You must be logged in to vote

For anyone who comes looking for a similar problem, I used the following four step approach.

1. Centralize the color pallete in your own CSS variables.

/* styles.css */
:root {
  --font-style: 'Lato', sans-serif;
  --primary-color-50: #ffffff;
  --primary-color-100: #fffffe;
  --primary-color-200: #feeed7;
  --primary-color-300: #fcddaf;
  --primary-color-400: #fbcd88;
  --primary-color-500: #fabc60;
  --primary-color-600: #f8a52a;
  --primary-color-700: #e38a07;
  --primary-color-800: #ac6905;
  --primary-color-900: #764804;
  --primary-color-950: #5b3703;
  --secondary-color-50: #e6f6f9;
  --secondary-color-100: #caecf2;
  --secondary-color-200: #95dae5;
  --secondary-color-300: #60c7d7;…

Replies: 3 comments 8 replies

Comment options

You must be logged in to vote
3 replies
@nawazishali
Comment options

@vieira-brz
Comment options

@nawazishali
Comment options

Comment options

You must be logged in to vote
1 reply
@nawazishali
Comment options

Comment options

You must be logged in to vote
4 replies
@samarshrestha720
Comment options

@jamesslinger
Comment options

@nawazishali
Comment options

@jamesslinger
Comment options

Answer selected by nawazishali
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
5 participants