-
Bootstrap - 테마 색상 커스터마이징Bootstrap 2021. 5. 29. 20:55
https://getbootstrap.com/docs/5.0/customize/overview/
Customize
Learn how to theme, customize, and extend Bootstrap with Sass, a boatload of global options, an expansive color system, and more.
getbootstrap.com
// Required @import '../node_modules/bootstrap/scss/functions'; @import '../node_modules/bootstrap/scss/variables'; @import '../node_modules/bootstrap/scss/mixins'; $secondary: yellowgreen; //커스터마이징 $theme-colors: ( 'primary': $primary, 'secondary': $secondary, 'success': $success, 'info': $info, 'warning': $warning, 'danger': $danger, 'light': $light, 'dark': $dark, ); @import '../node_modules/bootstrap/scss/bootstrap';
'Bootstrap' 카테고리의 다른 글
Bootstrap - Optimize(최적화) (0) 2021.05.29 Bootstrap - NPM (0) 2021.05.29 Bootstrap - ToolTip (0) 2021.05.29 Bootstrap - 버튼 (0) 2021.05.29 Bootstrap 시작 (0) 2021.05.29