Bootstrapのテンプレート

CSS

色の変更【文字】

文字変更例 

<h1 class="text-primary">IT America</h1>
<p class="text-danger">IT America</p>

バックグラウンド変更例

<body class="bg-light">
<div class="p-3 mb-2 bg-primary">IT America</div>

コンビネーション例

<p class="text-white-50 bg-dark">IT America</p>
<div class="p-3 mb-2 bg-primary text-white">IT America</div>

参考

https://getbootstrap.com/docs/5.0/customize/color/

【Bootstrap】文字色や背景色を設定しよう! - プログラミング未経験者の学習日記

Bootstrapで使用可能な色の調べ方 Color Background color Bootstrapで使用可能な色の調べ方 Bootstrap公式サイトの「Documentation」ー「Utilities」ー「Colors」ページ…

Follow me!