Last active
December 2, 2022 13:06
-
-
Save boriskirov/8f146a2ea71dc3f6502e720cc7f24ca8 to your computer and use it in GitHub Desktop.
My personal color schema for creating visual schemas and architecture, inspired by the P3 color space. Feel free to explore and use it.
This file contains 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
const ColorData = [ | |
{ | |
code: "#6bf4c8", | |
}, | |
{ | |
code: "#5debac", | |
}, | |
{ | |
code: "#66ed7f", | |
}, | |
{ | |
code: "#ffd253", | |
}, | |
{ | |
code: "#ff7253", | |
}, | |
{ | |
code: "#f0696a", | |
}, | |
{ | |
code: "#f06a8b", | |
}, | |
{ | |
code: "#ff9cb4", | |
}, | |
{ | |
code: "#b66afe", | |
}, | |
{ | |
code: "#6ac9f5", | |
}, | |
{ | |
code: "#62acfe", | |
}, | |
{ | |
code: "#686afe", | |
}, | |
{ | |
code: "#00091b", | |
}, | |
{ | |
code: "#011438", | |
}, | |
{ | |
code: "#fefefe", | |
}, | |
{ | |
code: "#f2f2f2", | |
}, | |
]; | |
export default ColorData; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment