Created
March 30, 2022 10:27
-
-
Save wewindy/c02b8b7fde3f78babbcbdaf78efbf2eb to your computer and use it in GitHub Desktop.
web-color-gradients
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const Rainbow_7: string[] = [ | |
| 'rgb(255, 0, 0)', | |
| 'rgb(255, 165, 0)', | |
| 'rgb(255, 255, 0)', | |
| 'rgb(0, 255, 0)', | |
| 'rgb(0, 255, 255)', | |
| 'rgb(0, 0, 255)', | |
| 'rgb(139, 0, 255)' | |
| ] | |
| export const WarmFlame_2: string[] = [ | |
| 'rgb(255, 154, 158)', | |
| 'rgb(250, 208, 196)' | |
| ] | |
| export const NightFade_2: string[] = [ | |
| 'rgb(161, 140, 209)', | |
| 'rgb(251, 194, 235)' | |
| ] | |
| export const SpringWarmth_2: string[] = [ | |
| 'rgb(250, 208, 196)', | |
| 'rgb(255, 209, 255)' | |
| ] | |
| export const JuicyPeach_2: string[] = [ | |
| 'rgb(255, 236, 210)', | |
| 'rgb(252, 182, 159)' | |
| ] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment