유틸 - 색 color

jb kim·2022년 8월 4일
0

부트스트랩

목록 보기
4/48

테마 색

    <style>
        p {
            padding: 5px;
            font-size: 20px;
        }
        body {
            margin-bottom: 500px;
        }
    </style>

    <!-- COLORS ON TEXT -->

    <p class="text-primary">This is a primary text</p>
    <p class="text-secondary">This is a secondary text</p>
    <p class="text-success">This is a success text</p>
    <p class="text-danger">This is a danger text</p>
    <p class="text-warning">This is a warning text</p>
    <p class="text-info">This is a info text</p>
    <p class="text-light">This is a light text</p>
    <p class="text-dark">This is a dark text</p>
    <p class="text-body">This is a body text</p>
    <p class="text-muted">This is a muted text</p>
    <p class="text-white">This is a white text</p>
    <p class="text-black-50">This is a black-50 text</p>
    <p class="text-white-50">This is a white-50 text</p>


    <!-- COLORS ON BACKGROUND -->

    <p class="bg-primary text-light">This is a primary background</p>
    <p class="bg-secondary text-white">This is a secondary background</p>
    <p class="bg-success">This is a success background</p>
    <p class="bg-danger">This is a danger background</p>
    <p class="bg-warning">This is a warning background</p>
    <p class="bg-info">This is a info background</p>
    <p class="bg-light">This is a light background</p>
    <p class="bg-dark text-white-50">This is a dark background</p>
    <p class="bg-body">This is a body background</p>
    <p class="bg-white">This is a white background</p>
    <p class="bg-transparent">This is a transparent background</p>


profile
픽서

0개의 댓글