- Extensive updates to system configuration and deployment - Enhanced documentation and architecture improvements - Updated dependencies and build configurations - Improved service integrations and workflows 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
39 lines
1.5 KiB
CSS
39 lines
1.5 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer components {
|
|
.btn-primary {
|
|
@apply bg-mulberry-600 hover:bg-mulberry-700 text-white font-semibold rounded-lg shadow-lg hover:shadow-xl transition-all duration-300 ease-out hover:scale-105 active:scale-95;
|
|
}
|
|
|
|
.btn-secondary {
|
|
@apply border-2 border-mulberry-600 text-mulberry-600 hover:bg-mulberry-600 hover:text-white font-semibold rounded-lg shadow-lg hover:shadow-xl transition-all duration-300 ease-out hover:scale-105 active:scale-95;
|
|
}
|
|
|
|
.btn-danger {
|
|
@apply bg-coral-600 hover:bg-coral-700 text-white font-semibold rounded-lg shadow-lg hover:shadow-xl transition-all duration-300 ease-out hover:scale-105 active:scale-95;
|
|
}
|
|
|
|
.table-cell {
|
|
@apply px-chorus-lg py-chorus-md text-sm border-b border-sand-200 dark:border-carbon-700 text-carbon-900 dark:text-carbon-100;
|
|
}
|
|
|
|
.table-header {
|
|
@apply px-chorus-lg py-chorus-lg text-xs font-semibold uppercase tracking-wide text-carbon-700 dark:text-carbon-300 bg-sand-100 dark:bg-carbon-800 border-b border-sand-300 dark:border-carbon-600;
|
|
}
|
|
|
|
/* Enhanced card styling for light mode branding */
|
|
.dashboard-card {
|
|
@apply bg-white dark:bg-carbon-900 rounded-lg shadow-lg border border-sand-200 dark:border-carbon-700 backdrop-blur-sm;
|
|
}
|
|
|
|
/* Branded gradients */
|
|
.gradient-primary {
|
|
@apply bg-gradient-to-r from-mulberry-500 to-mulberry-700;
|
|
}
|
|
|
|
.gradient-accent {
|
|
@apply bg-gradient-to-r from-ocean-500 to-eucalyptus-500;
|
|
}
|
|
} |