Reading view

Black Background in Darktable: The Missing Feature

💾

Use this custom CSS code to get a black background for your photos in the filmstrip mode (press "F" in the lighttable mode). This will help you check for distractions.

#photography #darktable #opensource

Code:

.dt_fullview #thumb-main:active #thumb-back
{
background-color: #000;
border: 0;

}

.dt_fullview #thumb-main #thumb-image
{
margin: 90px;
}

.dt_fullview #thumb-main:selected #thumb-image
{
border: 0;
margin: 90px;
}

.dt_fullview.dt_act_on_hover #thumb-main:hover #thumb-image,
.dt_fullview.dt_act_on_selection .dt_culling_selected#thumb-main #thumb-image
{
border: 0;
margin: 90px;
}
❌