π»
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .theme-purple-dark { | |
| --color-primary-100: #8e44ad; /* Deep Purple */ | |
| --color-primary-200: #a569bd; | |
| --color-primary-300: #b884d6; | |
| --color-primary-400: #d0a5e8; | |
| --color-primary-500: #e9c6f0; | |
| --color-primary-600: #f6e1f8; | |
| --color-primary-600-opacity-3: rgba(246, 225, 248, 0.3); | |
| --color-primary-600-opacity-6: rgba(246, 225, 248, 0.6); | |
| --color-primary-600-opacity-9: rgba(246, 225, 248, 0.9); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .theme-red-dark { | |
| --color-primary-100: #c0392b; /* Darker Red */ | |
| --color-primary-200: #d35445; | |
| --color-primary-300: #e3715f; | |
| --color-primary-400: #ec8a7b; | |
| --color-primary-500: #f2a295; | |
| --color-primary-600: #f6bdb3; | |
| --color-primary-600-opacity-3: rgba(246, 189, 179, 0.3); | |
| --color-primary-600-opacity-6: rgba(246, 189, 179, 0.6); | |
| --color-primary-600-opacity-9: rgba(246, 189, 179, 0.9); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .theme-orange-dark { | |
| --color-primary-100: #d35400; /* Darker Orange */ | |
| --color-primary-200: #e17022; | |
| --color-primary-300: #e98d43; | |
| --color-primary-400: #f0a062; | |
| --color-primary-500: #f5c185; | |
| --color-primary-600: #fbe3b1; | |
| --color-primary-600-opacity-3: rgba(251, 227, 177, 0.3); | |
| --color-primary-600-opacity-6: rgba(251, 227, 177, 0.6); | |
| --color-primary-600-opacity-9: rgba(251, 227, 177, 0.9); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .theme-green-dark { | |
| --color-primary-100: #2ea043; | |
| --color-primary-200: #37ae4d; | |
| --color-primary-300: #45c05e; | |
| --color-primary-400: #50d26f; | |
| --color-primary-500: #61e486; | |
| --color-primary-600: #61e486; | |
| --color-primary-600-opacity-3: rgba(97, 228, 134, 0.3); | |
| --color-primary-600-opacity-6: rgba(97, 228, 134, 0.6); | |
| --color-primary-600-opacity-9: rgba(97, 228, 134, 0.9); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .theme-blue-dark { | |
| --color-primary-100: #1a73e8; /* Deeper Blue */ | |
| --color-primary-200: #4c8bf7; | |
| --color-primary-300: #78a7f7; | |
| --color-primary-400: #a3c1fa; | |
| --color-primary-500: #cfe2ff; | |
| --color-primary-600: #e6f2ff; | |
| --color-primary-600-opacity-3: rgba(230, 242, 255, 0.3); | |
| --color-primary-600-opacity-6: rgba(230, 242, 255, 0.6); | |
| --color-primary-600-opacity-9: rgba(230, 242, 255, 0.9); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy Spring Boot App to EC2 | |
| on: | |
| push: | |
| branches: | |
| - main # Deploy on push to the main branch | |
| jobs: | |
| deploy: | |
| if: contains(github.event.head_commit.message, '[deploy-backend]') # triggers only commit message includes `deploy-backend` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TypeScript 37 hrs 48 mins βββββββββββββββββββββ 47.7% | |
| HTML 19 hrs 6 mins βββββββββββββββββββββ 24.1% | |
| Java 6 hrs 22 mins βββββββββββββββββββββ 8.0% | |
| SCSS 6 hrs 17 mins βββββββββββββββββββββ 7.9% | |
| JSON 4 hrs 46 mins βββββββββββββββββββββ 6.0% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build, Test, and Deploy | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| jobs: | |
| setup-environment: | |
| runs-on: ubuntu-latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy to Render | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| jobs: | |
| deploy: | |
| if: contains(github.event.head_commit.message, '[run-all]') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and Deploy to Netlify | |
| on: | |
| push: | |
| branches: | |
| - main # Or the branch you want to trigger the deployment | |
| jobs: | |
| build: | |
| if: contains(github.event.head_commit.message, '[run-all]') |