Initial commit

This commit is contained in:
2025-06-25 11:56:07 +05:30
parent 87af035459
commit addd221003
20 changed files with 7113 additions and 11455 deletions
+65
View File
@@ -0,0 +1,65 @@
const GlobalTheme = {
colors: {
// Primary Colors
primary: '#113F8C', // Main color for buttons, headers
secondary: '#4472BE',
text: '#333333', // Text color for most content
lightblue:'#EAF1FF',
lightblueborder:'#C6DBFF24',
// Additional Colors
success: '#4caf50', // Success or positive action color
yellow: '#FFD661', // Warning or alert color
error: '#ff5252', // Error or negative action color
info: '#2196f3', // Information color
// Grayscale
white: '#ffffff',
lightGray: '#F1F1F1',
gray: '#cccccc',
darkGray: '#555555',
black: '#000000',
},
typography: {
// Define typography styles here (e.g., font family, sizes, line heights, etc.)
fontFamily: 'Regular',
fontSize: {
xsmall: 12,
small: 16,
medium: 18,
large: 20,
},
fontWeight: {
regular: '400',
medium: '500',
bold: '700',
},
},
spacing: {
// Define spacing units (e.g., margin and padding) for consistent layout
xs: 4,
sm: 8,
md: 16,
lg: 24,
xl: 32,
},
borderRadius: {
// Define border radius values for consistent UI elements
sm: 5,
md: 10,
lg: 15,
lgg: 20,
xlg: 25,
},
// Add other global theme properties as needed
};
export default GlobalTheme;
export const shadow = {
shadowColor: '#00000014',
shadowOffset: {width: 5, height: 5},
shadowOpacity: 0.8,
shadowRadius: 10,
elevation: 20,
};