This commit is contained in:
Maarten 2024-08-08 14:22:35 +02:00
parent cec664c8d0
commit ff2320f08c
13 changed files with 297 additions and 297 deletions

View file

@ -7,56 +7,56 @@ const tintColorLight = '#76af2a';
const tintColorDark = '#76af2a';
export const Colors = {
// Base
tint: tintColorLight,
black: '#000',
white: '#fff',
red: '#ff0000',
light: {
// Main
text: '#11181C',
background: '#fff',
// Base
tint: tintColorLight,
black: '#000',
white: '#fff',
red: '#ff0000',
// Icons
icon: '#687076',
tabIconDefault: '#11181C',
tabIconSelected: tintColorLight,
light: {
// Main
text: '#11181C',
background: '#fff',
tint: tintColorLight,
// Types
green: '#3c8840',
paper: '#0071ce',
packages: '#f36c21',
grey: '#64666a',
// Icons
icon: '#687076',
tabIconDefault: '#11181C',
tabIconSelected: tintColorLight,
// Buttons
buttonBackground: '#f5f5f5',
// Types
green: '#3c8840',
paper: '#0071ce',
packages: '#f36c21',
grey: '#64666a',
// Border
borderColor: '#f2f2f2',
},
dark: {
// Main
text: '#ECEDEE',
background: '#151718',
tint: tintColorDark,
// Buttons
buttonBackground: '#f5f5f5',
// Icons
icon: '#9BA1A6',
tabIconDefault: '#9BA1A6',
tabIconSelected: tintColorDark,
// Border
borderColor: '#f2f2f2',
},
dark: {
// Main
text: '#ECEDEE',
background: '#151718',
tint: tintColorDark,
// Types
green: '#3c8840',
paper: '#0071ce',
packages: '#f36c21',
grey: '#64666a',
// Icons
icon: '#9BA1A6',
tabIconDefault: '#9BA1A6',
tabIconSelected: tintColorDark,
// Buttons
buttonBackground: '#f5f5f5',
// Types
green: '#3c8840',
paper: '#0071ce',
packages: '#f36c21',
grey: '#64666a',
// Border
borderColor: '#f2f2f2',
},
// Buttons
buttonBackground: '#f5f5f5',
// Border
borderColor: '#f2f2f2',
},
};