Evotec

Project

PSWriteHTML

PSWriteHTML is an open-source PowerShell project with packages, release history, and working documentation.

Stars 995
Forks 114
Open issues 69
PowerShell Gallery downloads 7,436,513
Release v1.41.0
Language: PowerShell Updated: 2026-04-11

API Reference

Function

New-HTMLTabPanelColor

Namespace PSWriteHTML

Creates a new HTML Tab Panel with customizable colors.

Remarks

This function allows you to define colors for various elements of an HTML Tab Panel, such as background color, border color, anchor colors, and loader colors.

Examples

Authored help example

EXAMPLE 1


Set-HTMLTabPanelColor -BackgrounColor '#f0f0f0' -BorderColor '#cccccc' -AnchorDefaultPrimaryColor '#333333'
        

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

New-HTMLTabPanelColor [-AnchorActivePrimaryColor <String>] [-AnchorActiveSecondaryColor <String>] [-AnchorDefaultPrimaryColor <String>] [-AnchorDefaultSecondaryColor <String>] [-AnchorDisabledPrimaryColor <String>] [-AnchorDisabledSecondaryColor <String>] [-BackgrounColor <String>] [-BorderColor <String>] [-BorderStyle <solid>] [-BorderWidth <String>] [-LoaderBackgroundColor <String>] [-LoaderBackgroundWrapperColor <String>] [-LoaderColor <String>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

AnchorActivePrimaryColor String optionalposition: 6pipeline: False
The primary color of active anchor links.
AnchorActiveSecondaryColor String optionalposition: 7pipeline: False
The secondary color of active anchor links.
AnchorDefaultPrimaryColor String optionalposition: 4pipeline: False
The primary color of default anchor links.
AnchorDefaultSecondaryColor String optionalposition: 5pipeline: False
The secondary color of default anchor links.
AnchorDisabledPrimaryColor String optionalposition: 8pipeline: False
The primary color of disabled anchor links.
AnchorDisabledSecondaryColor String optionalposition: 9pipeline: False
The secondary color of disabled anchor links.
BackgrounColor String optionalposition: 0pipeline: False
The background color of the tab panel.
BorderColor String optionalposition: 3pipeline: False
The color of the border. Default is '#eeeeee'.
BorderStyle String optionalposition: 2pipeline: Falsevalues: 9
The style of the border. Choose from: 'solid', 'dotted', 'dashed', 'double', 'groove', 'ridge', 'inset', 'outset', 'none', 'hidden'. Default is 'solid'.
Possible values: solid, dotted, dashed, double, groove, ridge, inset, outset, hidden
BorderWidth String optionalposition: 1pipeline: False
The width of the border. Default is '1px'.
LoaderBackgroundColor String optionalposition: 11pipeline: False
The background color of the loader.
LoaderBackgroundWrapperColor String optionalposition: 12pipeline: False
The color of the loader background wrapper.
LoaderColor String optionalposition: 10pipeline: False
The color of the loader.