@mikezimm/npmfunctions
Version:
Functions used in my SPFx webparts
22 lines (12 loc) • 923 B
text/typescript
// Color themes: https://html-color-codes.info/color-names/
//Used in CSS React Bar Chart themes for Drilldown
export const ColorsBrown = [ 'Brown', 'SaddleBrown', 'Sienna', 'Chocolate', 'DarkGoldenrod', 'Goldenrod', 'Tan'
, 'BurlyWood', 'Wheat', 'Bisque'];
export const ColorsBlue = [ 'RoyalBlue', 'MediumSlateBlue', 'SteelBlue', 'DeepSkyBlue', 'LightSkyBlue'
, 'MediumTurquoise', 'Turquoise', 'PaleTurquoise', 'LightCyan'];
export const ColorsGreen = [ 'DarkGreen', 'Green', 'SeaGreen', 'MediumSeaGreen', 'LimeGreen', 'Lime', 'GreenYellow'
, ]; //'', '', '', '', '', '']
export const ColorsRed = [ 'DarkRed', 'FireBrick', 'Crimson', 'IndianRed', 'LightCoral', 'DarkSalmon', 'LightSalmon'
, ]; // '', '', '', '', '', '']
export const ColorsGray = [ 'darkslategray', 'slategray', 'lightslategray', 'dimgray', 'gray', 'darkgray', 'silver'
, 'lightgray', 'gainsboro', ]; // '', '', '', '']