v1.4.0
Released: 1-21-2018
Custom elements can be created with
New-UDElement
. This cmdlet supports both PowerShell-based elements and JavaScript-based elements.For an example of a PowerShell-based custom element, visit the UniversalDashboard.MaterialDesign GitHub repository.
For an example of a JavaScript-based custom element, visit the UniversalDashboard.Sparklines GitHub repository.
Themes can now be selected with the
Get-UDTheme
cmdlet. There are x built in themes to choose from. Themes can be provided to the New-UDDashboard
cmdlet.You can create custom themes with
New-UDTheme
. You can also base your custom theme on a built in theme to modify only certain colors.Creating new themes based on existing themes is as easy as this.
$Theme = New-UDTheme -Name "Custom" -Definition @{
'UDTable' = @{
'BackgroundColor' = '#123123'
}
} -Parent Azure
Last modified 3yr ago