mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* feat: add query builder and graph * feat: add graph * fix: id in the another places * fix: multiple queries for explorer logs * chore: chunkName is updated --------- Co-authored-by: Chintan Sudani <46838508+techchintan@users.noreply.github.com> Co-authored-by: Palash Gupta <palashgdev@gmail.com>
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
const themeColors = {
|
|
chartcolors: {
|
|
dodgerBlue: '#2F80ED',
|
|
mediumOrchid: '#BB6BD9',
|
|
seaBuckthorn: '#F2994A',
|
|
seaGreen: '#219653',
|
|
turquoiseBlue: '#56CCF2',
|
|
festivalOrange: '#F2C94C',
|
|
silver: '#BDBDBD',
|
|
outrageousOrange: '#FF6633',
|
|
roseBud: '#FFB399',
|
|
magentaPink: '#FF33FF',
|
|
canary: '#FFFF99',
|
|
deepSkyBlue: '#00B3E6',
|
|
goldTips: '#E6B333',
|
|
royalBlue: '#3366E6',
|
|
avocado: '#999966',
|
|
mintGreen: '#99FF99',
|
|
chestnut: '#B34D4D',
|
|
lima: '#80B300',
|
|
olive: '#809900',
|
|
beautyBush: '#E6B3B3',
|
|
danube: '#6680B3',
|
|
oliveDrab: '#66991A',
|
|
lavenderRose: '#FF99E6',
|
|
electricLime: '#CCFF1A',
|
|
radicalRed: '#FF1A66',
|
|
harleyOrange: '#E6331A',
|
|
turquoise: '#33FFCC',
|
|
gladeGreen: '#66994D',
|
|
hemlock: '#66664D',
|
|
vidaLoca: '#4D8000',
|
|
rust: '#B33300',
|
|
},
|
|
errorColor: '#d32f2f',
|
|
royalGrey: '#888888',
|
|
matterhornGrey: '#555555',
|
|
whiteCream: '#ffffffd5',
|
|
white: '#ffffff',
|
|
black: '#000000',
|
|
lightBlack: '#141414',
|
|
lightgrey: '#ddd',
|
|
lightWhite: '#ffffffd9',
|
|
borderLightGrey: '#d9d9d9',
|
|
borderDarkGrey: '#424242',
|
|
};
|
|
|
|
export { themeColors };
|