Skip to content

Commit

Permalink
Merge pull request #1046 from ironmansoftware/DefaultThemeUpdate
Browse files Browse the repository at this point in the history
Default theme update - Padding, Background Color, MaterialUI Color Spec
  • Loading branch information
adamdriscoll authored Aug 25, 2019
2 parents 332ec4c + 1bf3b9b commit 5be42fb
Showing 1 changed file with 46 additions and 6 deletions.
52 changes: 46 additions & 6 deletions src/UniversalDashboard/Themes/Default.psd1
Original file line number Diff line number Diff line change
@@ -1,17 +1,57 @@
@{
Name = "Default"
Definition = @{

UDDashboard = @{
BackgroundColor = "rgb(255,255,255)"
FontColor = "rgb(0, 0, 0)"
BackgroundColor = "#EEEEEE"
FontColor = "#111111"

}
UDNavBar = @{
BackgroundColor = "rgb(36, 81, 131)"
FontColor = "rgb(255, 255, 255)"
BackgroundColor = "#3f51b5"
FontColor = "#ffffff"
}
UDFooter = @{
BackgroundColor = "rgb(36, 81, 131)"
FontColor = "rgb(255, 255, 255)"
BackgroundColor = "#3f51b5"
FontColor = "#ffffff"
}

'.btn' = @{
'background-color' = "#3f51b5"
}

'.btn:hover' = @{
'background-color' = "#2c387e"
}

'.btn-floating' = @{
'background-color' = "#3f51b5"
}

'main' = @{
'padding-left' = "50px"
'padding-right' = "50px"
'padding-top' = "50px"
'padding-bottom' = "50px"
}

'[type="radio"]:checked + span::after' = @{
'background-color' = "#3f51b5"
}

'[type="checkbox"]:checked + span:not(.lever)::before' = @{
"border-right" = "2px solid #3f51b5"
"border-bottom" = "2px solid #3f51b5"
}

'.pagination li a'= @{
'color' = "#3f51b5"
}

'.pagination li.active' = @{
'color' = "#111111 !important"
'background-color' = "#3f51b5"
}

}
}

0 comments on commit 5be42fb

Please sign in to comment.