Hi! I recently changed ther color layout of my
website. Among other things I changed the color of my font. But as you can see, bold text (and by extension, headings and link text) is still purple for some reason. I searched my style.css file for the original purple (#fceaff) to try and find the source, but it's not there. So the font is sourcing the colour purple seemingly out of nowhere?
This is the code that affects the font in my style.css file. As you can see, the color is set to #8cd98c/green. But the bold text won't change accordingly. How do I make the bold text change as well? I've tried googling it but according to google nobody else has ever had this problem before XD
@font-face {
font-family: PixelOperator;
src: url('https://zj.neocities.org/fonts/PixelOperator.ttf');
}
@font-face {
font-family: PixelOperator;
src: url('https://zj.neocities.org/fonts/PixelOperator-Bold.ttf');
font-weight: bold;
}
body {
font-family: 'PixelOperator', sans-serif;
margin: 0;
background-color: #8cd98c;
/* you can delete the line below if you'd prefer to not use an image */
background-size: 276px;
color: #8cd98c;
background-image: var(--body-bg-image);
}
I have this line
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
in all my other pages.