mirror of
https://github.com/SomboChea/ui
synced 2024-11-16 11:14:26 +07:00
39 lines
730 B
TypeScript
39 lines
730 B
TypeScript
|
// Verdaccio
|
||
|
// -------------------------
|
||
|
|
||
|
// Main colors
|
||
|
// -------------------------
|
||
|
const colors = {
|
||
|
black: '#000',
|
||
|
white: '#fff',
|
||
|
red: '#d32f2f',
|
||
|
grey: '#808080',
|
||
|
greySuperLight: '#f5f5f5',
|
||
|
greyLight: '#d3d3d3',
|
||
|
greyLight2: '#908ba1',
|
||
|
greyLight3: '#f3f4f240',
|
||
|
greyDark: '#a9a9a9',
|
||
|
greyDark2: '#586069',
|
||
|
greyChateau: '#95989a',
|
||
|
greyGainsboro: '#e3e3e3',
|
||
|
greyAthens: '#d3dddd',
|
||
|
|
||
|
eclipse: '#3c3c3c',
|
||
|
paleNavy: '#e4e8f1',
|
||
|
saltpan: '#f7f8f6',
|
||
|
snow: '#f9f9f9',
|
||
|
love: '#e25555',
|
||
|
|
||
|
nobel01: '#999999',
|
||
|
nobel02: '#9f9f9f',
|
||
|
|
||
|
// Main colors
|
||
|
// -------------------------
|
||
|
|
||
|
// @ts-ignore
|
||
|
primary: window.VERDACCIO_PRIMARY_COLOR || '#4b5e40',
|
||
|
secondary: '#20232a',
|
||
|
};
|
||
|
|
||
|
export default colors;
|