Created
September 12, 2022 20:08
-
-
Save dlxsnippets/66079d202e64a91d46c642ca3c6eb86e to your computer and use it in GitHub Desktop.
Bootstrap, Chakra UI, and MaterialUI colors
This file contains 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
// Material colors. | |
$material-success-color: #1e4620; | |
$material-success-color-accent: #295e2c; | |
$material-success-color-alt: #2e7d32; | |
$material-success-color-bold: #4caf50; | |
$material-success-color-light: #edf7ed; | |
$material-info-color: #014361; | |
$material-info-color-accent: #035e88; | |
$material-info-color-alt: #0277bd; | |
$material-info-color-bold: #03a9f4; | |
$material-info-color-light: #e5f6fd; | |
$material-warning-color: #663c00; | |
$material-warning-color-accent: #8c5e00; | |
$material-warning-color-alt: #ed6c02; | |
$material-warning-color-bold: #ff9800; | |
$material-warning-color-light: #fff4e5; | |
$material-error-color: #5f2120; | |
$material-error-color-accent: #8c2d2b; | |
$material-error-color-alt: #d32f2f; | |
$material-error-color-bold: #ef5350; | |
$material-error-color-light: #fdeded; | |
// Chakra colors. | |
$chakra-success-color: #2d3748; | |
$chakra-success-color-accent: #38a169; | |
$chakra-success-color-alt: #3dae71; | |
$chakra-success-color-bold: #38a169; | |
$chakra-success-color-light: #c6f6d5; | |
$chakra-info-color: #014361; | |
$chakra-info-color-accent: #3182ce; | |
$chakra-info-color-alt: #2d75b8; | |
$chakra-info-color-bold: #2d76bb; | |
$chakra-info-color-light: #bee3f8; | |
$chakra-warning-color: #2d3748; | |
$chakra-warning-color-accent: #dd6b20; | |
$chakra-warning-color-alt: #b35719; | |
$chakra-warning-color-bold: #dd6b20; | |
$chakra-warning-color-light: #feebc8; | |
$chakra-error-color: #5f2120; | |
$chakra-error-color-accent: #a92525; | |
$chakra-error-color-alt: #d32f2f; | |
$chakra-error-color-bold: #ef5350; | |
$chakra-error-color-light: #fed7d7; | |
// Bootstrap Primary colors. | |
$bootstrap-primary-color: #084298; | |
$bootstrap-primary-color-border: #b6d4fe; | |
$bootstrap-primary-color-accent: #26559c; | |
$bootstrap-primary-color-alt: #084298; | |
$bootstrap-primary-color-bold: #084298; | |
$bootstrap-primary-color-light: #cfe2ff; | |
// Bootstrap secondary. | |
$bootstrap-secondary-color: #41464b; | |
$bootstrap-secondary-color-border: #d3d6d8; | |
$bootstrap-secondary-color-accent: #5c6874; | |
$bootstrap-secondary-color-alt: #41464b; | |
$bootstrap-secondary-color-bold: #41464b; | |
$bootstrap-secondary-color-light: #e2e3e5; | |
// Bootstrap Success. | |
$bootstrap-success-color: #0f5132; | |
$bootstrap-success-color-border: #badbcc; | |
$bootstrap-success-color-accent: #167247; | |
$bootstrap-success-color-alt: #0f5132; | |
$bootstrap-success-color-bold: #0f5132; | |
$bootstrap-success-color-light: #d1e7dd; | |
// Bootstrap Danger. | |
$bootstrap-danger-color: #842029; | |
$bootstrap-danger-color-border: #f5c2c7; | |
$bootstrap-danger-color-accent: #832e35; | |
$bootstrap-danger-color-alt: #842029; | |
$bootstrap-danger-color-bold: #842029; | |
$bootstrap-danger-color-light: #f8d7da; | |
// Bootstrap Warning | |
$bootstrap-warning-color: #664d03; | |
$bootstrap-warning-color-border: #ffecb5; | |
$bootstrap-warning-color-accent: #7f6002; | |
$bootstrap-warning-color-alt: #664d03; | |
$bootstrap-warning-color-bold: #664d03; | |
$bootstrap-warning-color-light: #fff3cd; | |
// Bootstrap Info | |
$bootstrap-info-color: #055160; | |
$bootstrap-info-color-border: #b6effb; | |
$bootstrap-info-color-accent: #076c81; | |
$bootstrap-info-color-alt: #055160; | |
$bootstrap-info-color-bold: #055160; | |
$bootstrap-info-color-light: #cff4fc; | |
// Bootstrap Light | |
$bootstrap-light-color: #636464; | |
$bootstrap-light-color-border: #fdfdfe; | |
$bootstrap-light-color-accent: #7b7c7c; | |
$bootstrap-light-color-alt: #636464; | |
$bootstrap-light-color-bold: #636464; | |
$bootstrap-light-color-light: #fefefe; | |
// Bootstrap Dark | |
$bootstrap-dark-color: #141619; | |
$bootstrap-dark-color-border: #bcbebf; | |
$bootstrap-dark-color-accent: #292d33; | |
$bootstrap-dark-color-alt: #141619; | |
$bootstrap-dark-color-bold: #141619; | |
$bootstrap-dark-color-light: #d3d3d4; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment