Skip to main content
  1. Writings/

The Making of This Website

websites themes customizations

This is my new website. It’s a Hugo website and I used a theme called Blowfish by Nuno Coração. It’s an awesome theme with a lot of stuff you can customize. I created a new color scheme for this website using Nuno’s NodeJS application called Fugu to generate the color scheme I called Rose.

nunocoracao/fugu

TBD

JavaScript
13
3

Rose
#

Hex colors: #A73937 (Neutral), #D4625E (Primary), #40101A (Secondary)

Check out Rose color scheme on Gist: rose.css

I also added and changed some of its styling (CSS).

# assests/css/custom.css

:root {
    --neutral-color:    #a73937;
    --primary-color:    #d4625e;
    --secondary-color:  #40101a;
}

::selection {
    color:      var(--primary-color);
    background: var(--secondary-color);
}

input,
textarea {
    box-sizing: border-box !important;
    outline:    none !important;
    border:     1px solid var(--primary-color) !important;
    color:      var(--primary-color) !important;
}

input:focus,
textarea:focus {
    border:          1px solid var(--primary-color) !important;
    --tw-ring-color: var(--primary-color) !important;
}

If you also like to have a website like this one, see the following documentations: