This commit is contained in:
Philip Cesar Garay
2025-07-31 21:25:33 +08:00
parent 5cfbc81e3a
commit 84fc719a10
307 changed files with 46470 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import Palette from './Palette';
const Colors = {
background: Palette.white,
text: {
primary: 'rgba(0,0,0,0.7)',
secondary: Palette.text1,
link: Palette.text1,
},
button: {
primary: {
background: Palette.primary,
text: Palette.white,
border: Palette.primary,
},
secondary: {
background: 'transparent',
text: Palette.text1,
border: Palette.text1,
},
},
input: {
background: Palette.grey15,
text: Palette.text1,
placeholder: '#8E9192',
},
};
export default Colors;