colors.js (306B)
1 // @flow 2 3 const colors = { 4 dark: '#242424', 5 light: '#e3e0d7', 6 darkSelection: '#3e3e3e', 7 lightSelection: '#bdbcb6', 8 transparent: 'transparent', 9 linkLight: '#8dbfff', 10 linkDark: '#2585ff', 11 green: '#79d688', 12 darkGreen: '#257933', 13 orange: '#f9690e', 14 brown: '#ce5000', 15 }; 16 17 export {colors};