JSFiddle - React, Tailwind, and code Playground

HTML

<h2>Цвет обводки должен быть синим, а не инвертированным.</h2>

<section><article></article></section>

CSS

section {
    background: green;     
    color: blue;     
    width: 100px;     
    height: 50px;
    
}


article {
     position: relative;     
    top: 50px;    
    left: 50px;    
    width: 0;   
    height: 0;   
    outline-width: 50px;    
    outline-style: solid;   
    outline-color: currentColor;   
    
}