This is the head part of document.

<head>
    <!--Useful meta tags-->
    <meta name="description" content="">
    <meta name="keywords" content="">
    <meta name="robots" content="index, follow, noodp">
    <meta name="googlebot" content="index, follow">
    <meta name="google" content="notranslate">
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <!--Bootstrap Stylesheet-->
    <link rel="stylesheet" href="./assets/css/bootstrap.min.css">
    <!--Magnific Popup Stylesheet-->
    <link rel="stylesheet" href="./assets/css/magnific-popup.css">
    <!--OWL Carousel Stylesheet-->
    <link rel="stylesheet" href="./assets/css/owl.carousel.min.css">
    <!--Font Awesome Stylesheet-->
    <link rel="stylesheet" href="./assets/css/all.min.css">
    <!--Mobirise-->
    <link rel="stylesheet" href="./assets/css/mobirise/style.css">
    <!--AOC-->
    <link rel="stylesheet" href="./assets/css/aos.css">
    <!--Main Stylesheet-->
    <link rel="stylesheet" href="./assets/css/main.css">
     <!--Responsive Stylesheet-->
    <link rel="stylesheet" href="./assets/css/responsive.css">
    <!--Theme Stylesheet-->
    <link rel="stylesheet" href="./assets/css/dark.theme.css" id="optional-theme">
    <!--Theme Color-->
    <link rel="stylesheet" href="./assets/css/default.css" id="optional-color">
    <!--MAIN TITLE-->
    <title>Rectcv - Responsive Bootstrap 4 HTML Personal Template</title>
</head>

All CSS files are located in the assets/css folder.

CSS files are good structured and there is a table of contents so you can search anything easily.

Main Stylesheet

RectCV template has two structure stylesheets. Default and Mono:

For activating default structure, copy paste the main.css stylesheet into the head section.

<head>
    <!--Theme Stylesheet-->
    <!--Main Stylesheet-->
    <link rel="stylesheet" href="./assets/css/main.css">
</head>  

For activating mono structure, copy paste the mono.css stylesheet into the head section.

<head>
    <!--Theme Stylesheet-->
    <!--Main Stylesheet-->
    <link rel="stylesheet" href="./assets/css/mono.css">
</head>  

Themes

RectCV template has two styles: Dark and Light

For activating dark theme, copy-paste the dark.theme.css stylesheet into the head section.

<head>
    <!--Theme Stylesheet-->
    <link rel="stylesheet" href="./assets/css/dark.theme.css">
</head>  

For activating light theme, copy-paste the light.theme.css stylesheet into the head section.

<head>
    <!--Theme Stylesheet-->
    <link rel="stylesheet" href="./assets/css/light.theme.css">
</head>  

Color Schemes

RectCV has 6 color schemes. default, blue, green, pink, red and violet.

For example if you want to activate default color scheme, copy-paste default.css stylesheet into the head section.

<head>
    <!--Theme Color-->
    <link rel="stylesheet" href="./assets/css/default.css">
</head>