-
Notifications
You must be signed in to change notification settings - Fork 5
/
AsBuiltReport.Veeam.VB365.Style.ps1
61 lines (58 loc) · 2.49 KB
/
AsBuiltReport.Veeam.VB365.Style.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Veeam Default Heading and Font Styles
Style -Name 'Title' -Size 24 -Color '005f4b' -Align Center
Style -Name 'Title 2' -Size 18 -Color '565656' -Align Center
Style -Name 'Title 3' -Size 12 -Color '565656' -Align Left
Style -Name 'Heading 1' -Size 16 -Color '005f4b'
Style -Name 'NO TOC Heading 1' -Size 16 -Color '005f4b'
Style -Name 'Heading 2' -Size 14 -Color '005f4b'
Style -Name 'NO TOC Heading 2' -Size 14 -Color '005f4b'
Style -Name 'Heading 3' -Size 12 -Color '005f4b'
Style -Name 'NO TOC Heading 3' -Size 12 -Color '005f4b'
Style -Name 'Heading 4' -Size 11 -Color '005f4b'
Style -Name 'NO TOC Heading 4' -Size 11 -Color '005f4b'
Style -Name 'Heading 5' -Size 10 -Color '005f4b'
Style -Name 'NO TOC Heading 5' -Size 10 -Color '005f4b'
Style -Name 'Heading 6' -Size 10 -Color '005f4b'
Style -Name 'NO TOC Heading 6' -Size 10 -Color '005f4b'
Style -Name 'NO TOC Heading 7' -Size 10 -Color '00EBCD' -Italic
Style -Name 'Normal' -Size 10 -Color '565656' -Default
# Header & Footer Styles
Style -Name 'Header' -Size 10 -Color '565656' -Align Center
Style -Name 'Footer' -Size 10 -Color '565656' -Align Center
# Table of Contents Style
Style -Name 'TOC' -Size 16 -Color '005f4b'
# Table Heading & Row Styles
Style -Name 'TableDefaultHeading' -Size 10 -Color 'FAFAFA' -BackgroundColor '005f4b'
Style -Name 'TableDefaultRow' -Size 10 -Color '565656'
# Table Row/Cell Highlight Styles
Style -Name 'Critical' -Size 10 -Color '565656' -BackgroundColor 'FEDDD7'
Style -Name 'Warning' -Size 10 -Color '565656' -BackgroundColor 'FFF4C7'
Style -Name 'Info' -Size 10 -Color '565656' -BackgroundColor 'E3F5FC'
Style -Name 'OK' -Size 10 -Color '565656' -BackgroundColor 'DFF0D0'
# Table Caption Style
Style -Name 'Caption' -Size 10 -Color '005f4b' -Italic -Align Left
# Veeam Backup Windows Time Period Table
Style -Name 'ON' -Size 8 -BackgroundColor 'C4DD90' -Color C4DD90
Style -Name 'OFF' -Size 8 -BackgroundColor 'ECEDA7' -Color ECEDA7
if ($Options.ReportStyle -eq 'Veeam') {
$TableBorderColor = '005f4b'
} else {
$TableBorderColor = '072E58'
}
# Configure Table Styles
$TableDefaultProperties = @{
Id = 'TableDefault'
HeaderStyle = 'TableDefaultHeading'
RowStyle = 'TableDefaultRow'
BorderColor = $TableBorderColor
Align = 'Left'
CaptionStyle = 'Caption'
CaptionLocation = 'Below'
BorderWidth = 0.25
PaddingTop = 1
PaddingBottom = 1.5
PaddingLeft = 2
PaddingRight = 2
}
TableStyle @TableDefaultProperties -Default
TableStyle -Id 'Borderless' -HeaderStyle Normal -RowStyle Normal -BorderWidth 0