Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/root/cpp/include/DUNEStyle.h
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,17 @@ namespace dunestyle

return ret;
}
// ----------------------------------------------------------------------------

/// Change the background color to an off-white color (#f0f0f0) for use on updated DUNE slide (new template)

void Off_white_bkg()
{
static const TColor __off_white(TColor::GetFreeColorIndex(), 0.94, 0.94, 0.94);
gStyle->SetCanvasColor(__off_white);
gStyle->SetTitleFillColor(__off_white);
gStyle->SetStatColor(__off_white);
}
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------

Expand Down
Loading