To extend the admin base file create admin folder in the template folder and create base_site.html
templates/admin/base_site.html
{% extends ‘admin/base.html’ %}
{% load static %}
{% block branding %}
BTRE Real Estate
{% endblock%}
{% block extrastyle %} {% endblock %}
Create admin.css file in the static/css folder
#header{
color:white;
background-color: var(–color-1,blue);
height: 70px;
}
.module caption{
background-color: var(–color-1,blue);
}
a{
color: var(–color-1) !important;
}
.module caption , #header a{
color: var(–color-2,yellow) !important;
}
div.breadcrumbs{
background-color: var(–info,blue);
}