forked from zengm-games/facesjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dfbba7f
commit 12b53a4
Showing
158 changed files
with
1,156 additions
and
308 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import { TeamColors } from "./types"; | ||
|
||
export const jerseyColorOptions: TeamColors[] = [ | ||
["#98002E", "#BC9B6A", "#FFFFFF"], | ||
["#F56600", "#522D80", "#FFFFFF"], | ||
["#B3A369", "#003057", "#FFFFFF"], | ||
["#CC0000", "#000000", "#FFFFFF"], | ||
["#0C2340", "#C99700", "#00843D"], | ||
["#003594", "#FFB81C", "#FFFFFF"], | ||
["#630031", "#CF4420", "#FFFFFF"], | ||
["#24135F", "#AD8900", "#000000"], | ||
["#311D00", "#FF3C00", "#FFFFFF"], | ||
["#552583", "#FDB927", "#FFFFFF"], | ||
["#00538C", "#002B5E", "#FFFFFF"], | ||
["#007AC1", "#EF3B24", "#002D62"], | ||
["#007A33", "#FFFFFF", "#BA9653"], | ||
["#98002E", "#F9A01B", "#FFFFFF"], | ||
["#00471B", "#EEE1C6", "#FFFFFF"], | ||
["#F74902", "#000000", "#FFFFFF"], | ||
["#6F263D", "#236192", "#A2AAAD"], | ||
["#BB0000", "#666666", "#FFFFFF"], | ||
["#7A0019", "#FFCC33", "#FFFFFF"], | ||
["#4E2A84", "#FFFFFF", "#000000"], | ||
["#FFCD00", "#000000", "#FFFFFF"], | ||
]; | ||
|
||
export const colors = { | ||
white: { | ||
skin: ["#f2d6cb", "#ddb7a0"], | ||
hair: [ | ||
"#272421", | ||
"#3D2314", | ||
"#5A3825", | ||
"#CC9966", | ||
"#2C1608", | ||
"#B55239", | ||
"#e9c67b", | ||
"#D7BF91", | ||
], | ||
eyes: ["#b3d1ff", "#a5b8d2", "#8a7d5e"], | ||
}, | ||
asian: { | ||
// https://imgur.com/a/GrBuWYw | ||
skin: ["#fedac7", "#f0c5a3", "#eab687"], | ||
hair: ["#272421", "#0f0902"], | ||
eyes: ["#b3d1ff", "#a5b8d2", "#8a7d5e"], | ||
}, | ||
brown: { | ||
skin: ["#bb876f", "#aa816f", "#a67358"], | ||
hair: ["#272421", "#1c1008"], | ||
eyes: ["#b3d1ff", "#a5b8d2", "#8a7d5e"], | ||
}, | ||
black: { | ||
skin: ["#ad6453", "#74453d", "#5c3937"], | ||
hair: ["#272421"], | ||
eyes: ["#b3d1ff", "#a5b8d2", "#8a7d5e"], | ||
}, | ||
}; |
Oops, something went wrong.