propelauth.Theme
Explore with Pulumi AI
Hosted Pages Look & Feel. This is for configuring the look and feel of your PropelAuth hosted pages
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.propelauth.Image;
import com.pulumi.propelauth.ImageArgs;
import com.pulumi.propelauth.Theme;
import com.pulumi.propelauth.ThemeArgs;
import com.pulumi.propelauth.inputs.ThemeLoginPageThemeArgs;
import com.pulumi.propelauth.inputs.ThemeManagementPagesThemeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// Set the logo for your PropelAuth project.
var logoExample = new Image("logoExample", ImageArgs.builder()
.imageType("logo")
.source(String.format("%s/git-merge.png", path.module()))
.version("0.0.0")
.build());
// Set the favicon for your PropelAuth project.
var faviconExample = new Image("faviconExample", ImageArgs.builder()
.imageType("favicon")
.source(String.format("%s/git-merge.png", path.module()))
.version("0.0.0")
.build());
// Configure the look and feel for your PropelAuth hosted pages (eg login, account management, etc).
var example = new Theme("example", ThemeArgs.builder()
.bodyFont("PlusJakartaSans")
.headerFont("Fraunces")
.loginPageTheme(ThemeLoginPageThemeArgs.builder()
.background_type("Gradient")
.border_color("#000000")
.error_button_text_color("#ffffff")
.error_color("#cf222e")
.frame_background_color("#ffffff")
.frame_text_color("#700278")
.gradient_background_parameters(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.layout("Frameless")
.primary_color("#02927d")
.primary_text_color("#ffffff")
.build())
.managementPagesTheme(ThemeManagementPagesThemeArgs.builder()
.action_button_color("#629c75")
.action_button_text_color("#f7f7f7")
.border_color("#fcfcfc")
.main_background_color("#c1a0eb")
.main_text_color("#2d4036")
.navbar_background_color("#e4c7f2")
.navbar_text_color("#2d4036")
.build())
.build());
}
}
resources:
# Set the logo for your PropelAuth project.
logoExample:
type: propelauth:Image
properties:
imageType: logo
source: ${path.module}/git-merge.png
version: 0.0.0
# Set the favicon for your PropelAuth project.
faviconExample:
type: propelauth:Image
properties:
imageType: favicon
source: ${path.module}/git-merge.png
version: 0.0.0
# Configure the look and feel for your PropelAuth hosted pages (eg login, account management, etc).
example:
type: propelauth:Theme
properties:
bodyFont: PlusJakartaSans
headerFont: Fraunces
loginPageTheme:
background_type: Gradient
border_color: '#000000'
error_button_text_color: '#ffffff'
error_color: '#cf222e'
frame_background_color: '#ffffff'
frame_text_color: '#700278'
gradient_background_parameters:
backgroundGradientAngle: 45
backgroundGradientEndColor: '#000000'
backgroundGradientStartColor: '#0c1cf7'
backgroundTextColor: '#ffffff'
layout: Frameless
primary_color: '#02927d'
primary_text_color: '#ffffff'
managementPagesTheme:
action_button_color: '#629c75'
action_button_text_color: '#f7f7f7'
border_color: '#fcfcfc'
main_background_color: '#c1a0eb'
main_text_color: '#2d4036'
navbar_background_color: '#e4c7f2'
navbar_text_color: '#2d4036'
Create Theme Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Theme(name: string, args: ThemeArgs, opts?: CustomResourceOptions);
@overload
def Theme(resource_name: str,
args: ThemeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Theme(resource_name: str,
opts: Optional[ResourceOptions] = None,
login_page_theme: Optional[ThemeLoginPageThemeArgs] = None,
management_pages_theme: Optional[ThemeManagementPagesThemeArgs] = None,
body_font: Optional[str] = None,
display_project_name: Optional[bool] = None,
header_font: Optional[str] = None)
func NewTheme(ctx *Context, name string, args ThemeArgs, opts ...ResourceOption) (*Theme, error)
public Theme(string name, ThemeArgs args, CustomResourceOptions? opts = null)
type: propelauth:Theme
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ThemeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ThemeArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ThemeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ThemeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ThemeArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var themeResource = new Propelauth.Theme("themeResource", new()
{
LoginPageTheme = new Propelauth.Inputs.ThemeLoginPageThemeArgs
{
BackgroundType = "string",
BorderColor = "string",
ErrorButtonTextColor = "string",
ErrorColor = "string",
FrameBackgroundColor = "string",
FrameTextColor = "string",
GradientBackgroundParameters = new Propelauth.Inputs.ThemeLoginPageThemeGradientBackgroundParametersArgs
{
BackgroundGradientAngle = 0,
BackgroundGradientEndColor = "string",
BackgroundGradientStartColor = "string",
BackgroundTextColor = "string",
},
ImageBackgroundParameters = new Propelauth.Inputs.ThemeLoginPageThemeImageBackgroundParametersArgs
{
BackgroundTextColor = "string",
DefaultBackgroundColor = "string",
},
Layout = "string",
PrimaryColor = "string",
PrimaryTextColor = "string",
SolidBackgroundParameters = new Propelauth.Inputs.ThemeLoginPageThemeSolidBackgroundParametersArgs
{
BackgroundColor = "string",
BackgroundTextColor = "string",
},
SplitLoginPageParameters = new Propelauth.Inputs.ThemeLoginPageThemeSplitLoginPageParametersArgs
{
ContentType = "string",
Direction = "string",
Header = "string",
SecondaryBackgroundTextColor = "string",
Subheader = "string",
},
},
ManagementPagesTheme = new Propelauth.Inputs.ThemeManagementPagesThemeArgs
{
ActionButtonColor = "string",
ActionButtonTextColor = "string",
BorderColor = "string",
DisplayNavbar = false,
MainBackgroundColor = "string",
MainTextColor = "string",
NavbarBackgroundColor = "string",
NavbarTextColor = "string",
},
BodyFont = "string",
DisplayProjectName = false,
HeaderFont = "string",
});
example, err := propelauth.NewTheme(ctx, "themeResource", &propelauth.ThemeArgs{
LoginPageTheme: &.ThemeLoginPageThemeArgs{
BackgroundType: pulumi.String("string"),
BorderColor: pulumi.String("string"),
ErrorButtonTextColor: pulumi.String("string"),
ErrorColor: pulumi.String("string"),
FrameBackgroundColor: pulumi.String("string"),
FrameTextColor: pulumi.String("string"),
GradientBackgroundParameters: &.ThemeLoginPageThemeGradientBackgroundParametersArgs{
BackgroundGradientAngle: pulumi.Float64(0),
BackgroundGradientEndColor: pulumi.String("string"),
BackgroundGradientStartColor: pulumi.String("string"),
BackgroundTextColor: pulumi.String("string"),
},
ImageBackgroundParameters: &.ThemeLoginPageThemeImageBackgroundParametersArgs{
BackgroundTextColor: pulumi.String("string"),
DefaultBackgroundColor: pulumi.String("string"),
},
Layout: pulumi.String("string"),
PrimaryColor: pulumi.String("string"),
PrimaryTextColor: pulumi.String("string"),
SolidBackgroundParameters: &.ThemeLoginPageThemeSolidBackgroundParametersArgs{
BackgroundColor: pulumi.String("string"),
BackgroundTextColor: pulumi.String("string"),
},
SplitLoginPageParameters: &.ThemeLoginPageThemeSplitLoginPageParametersArgs{
ContentType: pulumi.String("string"),
Direction: pulumi.String("string"),
Header: pulumi.String("string"),
SecondaryBackgroundTextColor: pulumi.String("string"),
Subheader: pulumi.String("string"),
},
},
ManagementPagesTheme: &.ThemeManagementPagesThemeArgs{
ActionButtonColor: pulumi.String("string"),
ActionButtonTextColor: pulumi.String("string"),
BorderColor: pulumi.String("string"),
DisplayNavbar: pulumi.Bool(false),
MainBackgroundColor: pulumi.String("string"),
MainTextColor: pulumi.String("string"),
NavbarBackgroundColor: pulumi.String("string"),
NavbarTextColor: pulumi.String("string"),
},
BodyFont: pulumi.String("string"),
DisplayProjectName: pulumi.Bool(false),
HeaderFont: pulumi.String("string"),
})
var themeResource = new Theme("themeResource", ThemeArgs.builder()
.loginPageTheme(ThemeLoginPageThemeArgs.builder()
.backgroundType("string")
.borderColor("string")
.errorButtonTextColor("string")
.errorColor("string")
.frameBackgroundColor("string")
.frameTextColor("string")
.gradientBackgroundParameters(ThemeLoginPageThemeGradientBackgroundParametersArgs.builder()
.backgroundGradientAngle(0)
.backgroundGradientEndColor("string")
.backgroundGradientStartColor("string")
.backgroundTextColor("string")
.build())
.imageBackgroundParameters(ThemeLoginPageThemeImageBackgroundParametersArgs.builder()
.backgroundTextColor("string")
.defaultBackgroundColor("string")
.build())
.layout("string")
.primaryColor("string")
.primaryTextColor("string")
.solidBackgroundParameters(ThemeLoginPageThemeSolidBackgroundParametersArgs.builder()
.backgroundColor("string")
.backgroundTextColor("string")
.build())
.splitLoginPageParameters(ThemeLoginPageThemeSplitLoginPageParametersArgs.builder()
.contentType("string")
.direction("string")
.header("string")
.secondaryBackgroundTextColor("string")
.subheader("string")
.build())
.build())
.managementPagesTheme(ThemeManagementPagesThemeArgs.builder()
.actionButtonColor("string")
.actionButtonTextColor("string")
.borderColor("string")
.displayNavbar(false)
.mainBackgroundColor("string")
.mainTextColor("string")
.navbarBackgroundColor("string")
.navbarTextColor("string")
.build())
.bodyFont("string")
.displayProjectName(false)
.headerFont("string")
.build());
theme_resource = propelauth.Theme("themeResource",
login_page_theme={
"background_type": "string",
"border_color": "string",
"error_button_text_color": "string",
"error_color": "string",
"frame_background_color": "string",
"frame_text_color": "string",
"gradient_background_parameters": {
"background_gradient_angle": 0,
"background_gradient_end_color": "string",
"background_gradient_start_color": "string",
"background_text_color": "string",
},
"image_background_parameters": {
"background_text_color": "string",
"default_background_color": "string",
},
"layout": "string",
"primary_color": "string",
"primary_text_color": "string",
"solid_background_parameters": {
"background_color": "string",
"background_text_color": "string",
},
"split_login_page_parameters": {
"content_type": "string",
"direction": "string",
"header": "string",
"secondary_background_text_color": "string",
"subheader": "string",
},
},
management_pages_theme={
"action_button_color": "string",
"action_button_text_color": "string",
"border_color": "string",
"display_navbar": False,
"main_background_color": "string",
"main_text_color": "string",
"navbar_background_color": "string",
"navbar_text_color": "string",
},
body_font="string",
display_project_name=False,
header_font="string")
const themeResource = new propelauth.Theme("themeResource", {
loginPageTheme: {
backgroundType: "string",
borderColor: "string",
errorButtonTextColor: "string",
errorColor: "string",
frameBackgroundColor: "string",
frameTextColor: "string",
gradientBackgroundParameters: {
backgroundGradientAngle: 0,
backgroundGradientEndColor: "string",
backgroundGradientStartColor: "string",
backgroundTextColor: "string",
},
imageBackgroundParameters: {
backgroundTextColor: "string",
defaultBackgroundColor: "string",
},
layout: "string",
primaryColor: "string",
primaryTextColor: "string",
solidBackgroundParameters: {
backgroundColor: "string",
backgroundTextColor: "string",
},
splitLoginPageParameters: {
contentType: "string",
direction: "string",
header: "string",
secondaryBackgroundTextColor: "string",
subheader: "string",
},
},
managementPagesTheme: {
actionButtonColor: "string",
actionButtonTextColor: "string",
borderColor: "string",
displayNavbar: false,
mainBackgroundColor: "string",
mainTextColor: "string",
navbarBackgroundColor: "string",
navbarTextColor: "string",
},
bodyFont: "string",
displayProjectName: false,
headerFont: "string",
});
type: propelauth:Theme
properties:
bodyFont: string
displayProjectName: false
headerFont: string
loginPageTheme:
backgroundType: string
borderColor: string
errorButtonTextColor: string
errorColor: string
frameBackgroundColor: string
frameTextColor: string
gradientBackgroundParameters:
backgroundGradientAngle: 0
backgroundGradientEndColor: string
backgroundGradientStartColor: string
backgroundTextColor: string
imageBackgroundParameters:
backgroundTextColor: string
defaultBackgroundColor: string
layout: string
primaryColor: string
primaryTextColor: string
solidBackgroundParameters:
backgroundColor: string
backgroundTextColor: string
splitLoginPageParameters:
contentType: string
direction: string
header: string
secondaryBackgroundTextColor: string
subheader: string
managementPagesTheme:
actionButtonColor: string
actionButtonTextColor: string
borderColor: string
displayNavbar: false
mainBackgroundColor: string
mainTextColor: string
navbarBackgroundColor: string
navbarTextColor: string
Theme Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Theme resource accepts the following input properties:
- Login
Page ThemeTheme Login Page Theme - The theme for the login page
- Management
Pages ThemeTheme Management Pages Theme - The theme for the account and organization management pages
- Body
Font string - The font used for all body text in your hosted pages. This includes both login and management pages. The available options are the same as for
header_font
. The default value isInter
- Display
Project boolName - If true, the project name is displayed in the header of the login page. The default value is
true
- Header
Font string - The font used for all headings in your hosted pages written in PascalCase. This includes both login and management pages. Options include
Roboto
,Inter
,OpenSans
,Montserrat
,Lato
,Poppins
,Raleway
,Jost
,Fraunces
,Caveat
,PlusJakartaSans
, etcThe default value isInter
- Login
Page ThemeTheme Login Page Theme Args - The theme for the login page
- Management
Pages ThemeTheme Management Pages Theme Args - The theme for the account and organization management pages
- Body
Font string - The font used for all body text in your hosted pages. This includes both login and management pages. The available options are the same as for
header_font
. The default value isInter
- Display
Project boolName - If true, the project name is displayed in the header of the login page. The default value is
true
- Header
Font string - The font used for all headings in your hosted pages written in PascalCase. This includes both login and management pages. Options include
Roboto
,Inter
,OpenSans
,Montserrat
,Lato
,Poppins
,Raleway
,Jost
,Fraunces
,Caveat
,PlusJakartaSans
, etcThe default value isInter
- login
Page ThemeTheme Login Page Theme - The theme for the login page
- management
Pages ThemeTheme Management Pages Theme - The theme for the account and organization management pages
- body
Font String - The font used for all body text in your hosted pages. This includes both login and management pages. The available options are the same as for
header_font
. The default value isInter
- display
Project BooleanName - If true, the project name is displayed in the header of the login page. The default value is
true
- header
Font String - The font used for all headings in your hosted pages written in PascalCase. This includes both login and management pages. Options include
Roboto
,Inter
,OpenSans
,Montserrat
,Lato
,Poppins
,Raleway
,Jost
,Fraunces
,Caveat
,PlusJakartaSans
, etcThe default value isInter
- login
Page ThemeTheme Login Page Theme - The theme for the login page
- management
Pages ThemeTheme Management Pages Theme - The theme for the account and organization management pages
- body
Font string - The font used for all body text in your hosted pages. This includes both login and management pages. The available options are the same as for
header_font
. The default value isInter
- display
Project booleanName - If true, the project name is displayed in the header of the login page. The default value is
true
- header
Font string - The font used for all headings in your hosted pages written in PascalCase. This includes both login and management pages. Options include
Roboto
,Inter
,OpenSans
,Montserrat
,Lato
,Poppins
,Raleway
,Jost
,Fraunces
,Caveat
,PlusJakartaSans
, etcThe default value isInter
- login_
page_ Themetheme Login Page Theme Args - The theme for the login page
- management_
pages_ Themetheme Management Pages Theme Args - The theme for the account and organization management pages
- body_
font str - The font used for all body text in your hosted pages. This includes both login and management pages. The available options are the same as for
header_font
. The default value isInter
- display_
project_ boolname - If true, the project name is displayed in the header of the login page. The default value is
true
- header_
font str - The font used for all headings in your hosted pages written in PascalCase. This includes both login and management pages. Options include
Roboto
,Inter
,OpenSans
,Montserrat
,Lato
,Poppins
,Raleway
,Jost
,Fraunces
,Caveat
,PlusJakartaSans
, etcThe default value isInter
- login
Page Property MapTheme - The theme for the login page
- management
Pages Property MapTheme - The theme for the account and organization management pages
- body
Font String - The font used for all body text in your hosted pages. This includes both login and management pages. The available options are the same as for
header_font
. The default value isInter
- display
Project BooleanName - If true, the project name is displayed in the header of the login page. The default value is
true
- header
Font String - The font used for all headings in your hosted pages written in PascalCase. This includes both login and management pages. Options include
Roboto
,Inter
,OpenSans
,Montserrat
,Lato
,Poppins
,Raleway
,Jost
,Fraunces
,Caveat
,PlusJakartaSans
, etcThe default value isInter
Outputs
All input properties are implicitly available as output properties. Additionally, the Theme resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Theme Resource
Get an existing Theme resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ThemeState, opts?: CustomResourceOptions): Theme
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
body_font: Optional[str] = None,
display_project_name: Optional[bool] = None,
header_font: Optional[str] = None,
login_page_theme: Optional[ThemeLoginPageThemeArgs] = None,
management_pages_theme: Optional[ThemeManagementPagesThemeArgs] = None) -> Theme
func GetTheme(ctx *Context, name string, id IDInput, state *ThemeState, opts ...ResourceOption) (*Theme, error)
public static Theme Get(string name, Input<string> id, ThemeState? state, CustomResourceOptions? opts = null)
public static Theme get(String name, Output<String> id, ThemeState state, CustomResourceOptions options)
resources: _: type: propelauth:Theme get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Body
Font string - The font used for all body text in your hosted pages. This includes both login and management pages. The available options are the same as for
header_font
. The default value isInter
- Display
Project boolName - If true, the project name is displayed in the header of the login page. The default value is
true
- Header
Font string - The font used for all headings in your hosted pages written in PascalCase. This includes both login and management pages. Options include
Roboto
,Inter
,OpenSans
,Montserrat
,Lato
,Poppins
,Raleway
,Jost
,Fraunces
,Caveat
,PlusJakartaSans
, etcThe default value isInter
- Login
Page ThemeTheme Login Page Theme - The theme for the login page
- Management
Pages ThemeTheme Management Pages Theme - The theme for the account and organization management pages
- Body
Font string - The font used for all body text in your hosted pages. This includes both login and management pages. The available options are the same as for
header_font
. The default value isInter
- Display
Project boolName - If true, the project name is displayed in the header of the login page. The default value is
true
- Header
Font string - The font used for all headings in your hosted pages written in PascalCase. This includes both login and management pages. Options include
Roboto
,Inter
,OpenSans
,Montserrat
,Lato
,Poppins
,Raleway
,Jost
,Fraunces
,Caveat
,PlusJakartaSans
, etcThe default value isInter
- Login
Page ThemeTheme Login Page Theme Args - The theme for the login page
- Management
Pages ThemeTheme Management Pages Theme Args - The theme for the account and organization management pages
- body
Font String - The font used for all body text in your hosted pages. This includes both login and management pages. The available options are the same as for
header_font
. The default value isInter
- display
Project BooleanName - If true, the project name is displayed in the header of the login page. The default value is
true
- header
Font String - The font used for all headings in your hosted pages written in PascalCase. This includes both login and management pages. Options include
Roboto
,Inter
,OpenSans
,Montserrat
,Lato
,Poppins
,Raleway
,Jost
,Fraunces
,Caveat
,PlusJakartaSans
, etcThe default value isInter
- login
Page ThemeTheme Login Page Theme - The theme for the login page
- management
Pages ThemeTheme Management Pages Theme - The theme for the account and organization management pages
- body
Font string - The font used for all body text in your hosted pages. This includes both login and management pages. The available options are the same as for
header_font
. The default value isInter
- display
Project booleanName - If true, the project name is displayed in the header of the login page. The default value is
true
- header
Font string - The font used for all headings in your hosted pages written in PascalCase. This includes both login and management pages. Options include
Roboto
,Inter
,OpenSans
,Montserrat
,Lato
,Poppins
,Raleway
,Jost
,Fraunces
,Caveat
,PlusJakartaSans
, etcThe default value isInter
- login
Page ThemeTheme Login Page Theme - The theme for the login page
- management
Pages ThemeTheme Management Pages Theme - The theme for the account and organization management pages
- body_
font str - The font used for all body text in your hosted pages. This includes both login and management pages. The available options are the same as for
header_font
. The default value isInter
- display_
project_ boolname - If true, the project name is displayed in the header of the login page. The default value is
true
- header_
font str - The font used for all headings in your hosted pages written in PascalCase. This includes both login and management pages. Options include
Roboto
,Inter
,OpenSans
,Montserrat
,Lato
,Poppins
,Raleway
,Jost
,Fraunces
,Caveat
,PlusJakartaSans
, etcThe default value isInter
- login_
page_ Themetheme Login Page Theme Args - The theme for the login page
- management_
pages_ Themetheme Management Pages Theme Args - The theme for the account and organization management pages
- body
Font String - The font used for all body text in your hosted pages. This includes both login and management pages. The available options are the same as for
header_font
. The default value isInter
- display
Project BooleanName - If true, the project name is displayed in the header of the login page. The default value is
true
- header
Font String - The font used for all headings in your hosted pages written in PascalCase. This includes both login and management pages. Options include
Roboto
,Inter
,OpenSans
,Montserrat
,Lato
,Poppins
,Raleway
,Jost
,Fraunces
,Caveat
,PlusJakartaSans
, etcThe default value isInter
- login
Page Property MapTheme - The theme for the login page
- management
Pages Property MapTheme - The theme for the account and organization management pages
Supporting Types
ThemeLoginPageTheme, ThemeLoginPageThemeArgs
- Background
Type string - The type of background for the login page. Options include
Solid
,Gradient
, andImage
. The default value isSolid
- Border
Color string - The color of the borders in the login page. The default value is
#e4e4e4
- string
- The color of the text on error messages and cancel button in the login page. The default value is
#ffffff
- Error
Color string - The color for error messages and cancel button in the login page. The default value is
#cf222e
- Frame
Background stringColor - The background color within the frame in the login page. If the the
layout
isFrameless
, this color is applied to the background of the input components on the page. The default value is#ffffff
- Frame
Text stringColor - The color of the text within the frame in the login page. If the the
layout
isFrameless
, this color is applied to text within input components on the page. The default value is#0f0f0f
- Gradient
Background ThemeParameters Login Page Theme Gradient Background Parameters - The parameters required for a gradient background in the login page
- Image
Background ThemeParameters Login Page Theme Image Background Parameters - The parameters required for an image background in the login page
- Layout string
- The layout of the login page. Options include
Frame
,Frameless
, andSplitScreen
. The default value isFrame
- Primary
Color string - The primary color of action buttons and links in the login page. The default value is
#50c878
- Primary
Text stringColor - The color of the text on action buttons in the login page. The default value is
#f7f7f7
- Solid
Background ThemeParameters Login Page Theme Solid Background Parameters - The parameters required for a solid background in the login page
- Split
Login ThemePage Parameters Login Page Theme Split Login Page Parameters - The extra parameters required to configure a split login page
- Background
Type string - The type of background for the login page. Options include
Solid
,Gradient
, andImage
. The default value isSolid
- Border
Color string - The color of the borders in the login page. The default value is
#e4e4e4
- string
- The color of the text on error messages and cancel button in the login page. The default value is
#ffffff
- Error
Color string - The color for error messages and cancel button in the login page. The default value is
#cf222e
- Frame
Background stringColor - The background color within the frame in the login page. If the the
layout
isFrameless
, this color is applied to the background of the input components on the page. The default value is#ffffff
- Frame
Text stringColor - The color of the text within the frame in the login page. If the the
layout
isFrameless
, this color is applied to text within input components on the page. The default value is#0f0f0f
- Gradient
Background ThemeParameters Login Page Theme Gradient Background Parameters - The parameters required for a gradient background in the login page
- Image
Background ThemeParameters Login Page Theme Image Background Parameters - The parameters required for an image background in the login page
- Layout string
- The layout of the login page. Options include
Frame
,Frameless
, andSplitScreen
. The default value isFrame
- Primary
Color string - The primary color of action buttons and links in the login page. The default value is
#50c878
- Primary
Text stringColor - The color of the text on action buttons in the login page. The default value is
#f7f7f7
- Solid
Background ThemeParameters Login Page Theme Solid Background Parameters - The parameters required for a solid background in the login page
- Split
Login ThemePage Parameters Login Page Theme Split Login Page Parameters - The extra parameters required to configure a split login page
- background
Type String - The type of background for the login page. Options include
Solid
,Gradient
, andImage
. The default value isSolid
- border
Color String - The color of the borders in the login page. The default value is
#e4e4e4
- String
- The color of the text on error messages and cancel button in the login page. The default value is
#ffffff
- error
Color String - The color for error messages and cancel button in the login page. The default value is
#cf222e
- frame
Background StringColor - The background color within the frame in the login page. If the the
layout
isFrameless
, this color is applied to the background of the input components on the page. The default value is#ffffff
- frame
Text StringColor - The color of the text within the frame in the login page. If the the
layout
isFrameless
, this color is applied to text within input components on the page. The default value is#0f0f0f
- gradient
Background ThemeParameters Login Page Theme Gradient Background Parameters - The parameters required for a gradient background in the login page
- image
Background ThemeParameters Login Page Theme Image Background Parameters - The parameters required for an image background in the login page
- layout String
- The layout of the login page. Options include
Frame
,Frameless
, andSplitScreen
. The default value isFrame
- primary
Color String - The primary color of action buttons and links in the login page. The default value is
#50c878
- primary
Text StringColor - The color of the text on action buttons in the login page. The default value is
#f7f7f7
- solid
Background ThemeParameters Login Page Theme Solid Background Parameters - The parameters required for a solid background in the login page
- split
Login ThemePage Parameters Login Page Theme Split Login Page Parameters - The extra parameters required to configure a split login page
- background
Type string - The type of background for the login page. Options include
Solid
,Gradient
, andImage
. The default value isSolid
- border
Color string - The color of the borders in the login page. The default value is
#e4e4e4
- string
- The color of the text on error messages and cancel button in the login page. The default value is
#ffffff
- error
Color string - The color for error messages and cancel button in the login page. The default value is
#cf222e
- frame
Background stringColor - The background color within the frame in the login page. If the the
layout
isFrameless
, this color is applied to the background of the input components on the page. The default value is#ffffff
- frame
Text stringColor - The color of the text within the frame in the login page. If the the
layout
isFrameless
, this color is applied to text within input components on the page. The default value is#0f0f0f
- gradient
Background ThemeParameters Login Page Theme Gradient Background Parameters - The parameters required for a gradient background in the login page
- image
Background ThemeParameters Login Page Theme Image Background Parameters - The parameters required for an image background in the login page
- layout string
- The layout of the login page. Options include
Frame
,Frameless
, andSplitScreen
. The default value isFrame
- primary
Color string - The primary color of action buttons and links in the login page. The default value is
#50c878
- primary
Text stringColor - The color of the text on action buttons in the login page. The default value is
#f7f7f7
- solid
Background ThemeParameters Login Page Theme Solid Background Parameters - The parameters required for a solid background in the login page
- split
Login ThemePage Parameters Login Page Theme Split Login Page Parameters - The extra parameters required to configure a split login page
- background_
type str - The type of background for the login page. Options include
Solid
,Gradient
, andImage
. The default value isSolid
- border_
color str - The color of the borders in the login page. The default value is
#e4e4e4
- str
- The color of the text on error messages and cancel button in the login page. The default value is
#ffffff
- error_
color str - The color for error messages and cancel button in the login page. The default value is
#cf222e
- frame_
background_ strcolor - The background color within the frame in the login page. If the the
layout
isFrameless
, this color is applied to the background of the input components on the page. The default value is#ffffff
- frame_
text_ strcolor - The color of the text within the frame in the login page. If the the
layout
isFrameless
, this color is applied to text within input components on the page. The default value is#0f0f0f
- gradient_
background_ Themeparameters Login Page Theme Gradient Background Parameters - The parameters required for a gradient background in the login page
- image_
background_ Themeparameters Login Page Theme Image Background Parameters - The parameters required for an image background in the login page
- layout str
- The layout of the login page. Options include
Frame
,Frameless
, andSplitScreen
. The default value isFrame
- primary_
color str - The primary color of action buttons and links in the login page. The default value is
#50c878
- primary_
text_ strcolor - The color of the text on action buttons in the login page. The default value is
#f7f7f7
- solid_
background_ Themeparameters Login Page Theme Solid Background Parameters - The parameters required for a solid background in the login page
- split_
login_ Themepage_ parameters Login Page Theme Split Login Page Parameters - The extra parameters required to configure a split login page
- background
Type String - The type of background for the login page. Options include
Solid
,Gradient
, andImage
. The default value isSolid
- border
Color String - The color of the borders in the login page. The default value is
#e4e4e4
- String
- The color of the text on error messages and cancel button in the login page. The default value is
#ffffff
- error
Color String - The color for error messages and cancel button in the login page. The default value is
#cf222e
- frame
Background StringColor - The background color within the frame in the login page. If the the
layout
isFrameless
, this color is applied to the background of the input components on the page. The default value is#ffffff
- frame
Text StringColor - The color of the text within the frame in the login page. If the the
layout
isFrameless
, this color is applied to text within input components on the page. The default value is#0f0f0f
- gradient
Background Property MapParameters - The parameters required for a gradient background in the login page
- image
Background Property MapParameters - The parameters required for an image background in the login page
- layout String
- The layout of the login page. Options include
Frame
,Frameless
, andSplitScreen
. The default value isFrame
- primary
Color String - The primary color of action buttons and links in the login page. The default value is
#50c878
- primary
Text StringColor - The color of the text on action buttons in the login page. The default value is
#f7f7f7
- solid
Background Property MapParameters - The parameters required for a solid background in the login page
- split
Login Property MapPage Parameters - The extra parameters required to configure a split login page
ThemeLoginPageThemeGradientBackgroundParameters, ThemeLoginPageThemeGradientBackgroundParametersArgs
- Background
Gradient doubleAngle - The angle of the gradient background in the login page. The default value is
135
- Background
Gradient stringEnd Color - The end color of a gradient background in the login page. The default value is
#f7f7f7
- Background
Gradient stringStart Color - The start color of a gradient background in the login page. The default value is
#f7f7f7
- Background
Text stringColor - The color of the text on a gradient background in the login page. The default value is
#363636
- Background
Gradient float64Angle - The angle of the gradient background in the login page. The default value is
135
- Background
Gradient stringEnd Color - The end color of a gradient background in the login page. The default value is
#f7f7f7
- Background
Gradient stringStart Color - The start color of a gradient background in the login page. The default value is
#f7f7f7
- Background
Text stringColor - The color of the text on a gradient background in the login page. The default value is
#363636
- background
Gradient DoubleAngle - The angle of the gradient background in the login page. The default value is
135
- background
Gradient StringEnd Color - The end color of a gradient background in the login page. The default value is
#f7f7f7
- background
Gradient StringStart Color - The start color of a gradient background in the login page. The default value is
#f7f7f7
- background
Text StringColor - The color of the text on a gradient background in the login page. The default value is
#363636
- background
Gradient numberAngle - The angle of the gradient background in the login page. The default value is
135
- background
Gradient stringEnd Color - The end color of a gradient background in the login page. The default value is
#f7f7f7
- background
Gradient stringStart Color - The start color of a gradient background in the login page. The default value is
#f7f7f7
- background
Text stringColor - The color of the text on a gradient background in the login page. The default value is
#363636
- background_
gradient_ floatangle - The angle of the gradient background in the login page. The default value is
135
- background_
gradient_ strend_ color - The end color of a gradient background in the login page. The default value is
#f7f7f7
- background_
gradient_ strstart_ color - The start color of a gradient background in the login page. The default value is
#f7f7f7
- background_
text_ strcolor - The color of the text on a gradient background in the login page. The default value is
#363636
- background
Gradient NumberAngle - The angle of the gradient background in the login page. The default value is
135
- background
Gradient StringEnd Color - The end color of a gradient background in the login page. The default value is
#f7f7f7
- background
Gradient StringStart Color - The start color of a gradient background in the login page. The default value is
#f7f7f7
- background
Text StringColor - The color of the text on a gradient background in the login page. The default value is
#363636
ThemeLoginPageThemeImageBackgroundParameters, ThemeLoginPageThemeImageBackgroundParametersArgs
- Background
Text stringColor - The color of the text on an image background in the login page. The default value is
#363636
- Default
Background stringColor - The default color behind the background image in the login page. The default value is
#f7f7f7
- Background
Text stringColor - The color of the text on an image background in the login page. The default value is
#363636
- Default
Background stringColor - The default color behind the background image in the login page. The default value is
#f7f7f7
- background
Text StringColor - The color of the text on an image background in the login page. The default value is
#363636
- default
Background StringColor - The default color behind the background image in the login page. The default value is
#f7f7f7
- background
Text stringColor - The color of the text on an image background in the login page. The default value is
#363636
- default
Background stringColor - The default color behind the background image in the login page. The default value is
#f7f7f7
- background_
text_ strcolor - The color of the text on an image background in the login page. The default value is
#363636
- default_
background_ strcolor - The default color behind the background image in the login page. The default value is
#f7f7f7
- background
Text StringColor - The color of the text on an image background in the login page. The default value is
#363636
- default
Background StringColor - The default color behind the background image in the login page. The default value is
#f7f7f7
ThemeLoginPageThemeSolidBackgroundParameters, ThemeLoginPageThemeSolidBackgroundParametersArgs
- Background
Color string - The color of a solid background in the login page. The default value is
#f7f7f7
- Background
Text stringColor - The color of the text on a solid background in the login page. The default value is
#363636
- Background
Color string - The color of a solid background in the login page. The default value is
#f7f7f7
- Background
Text stringColor - The color of the text on a solid background in the login page. The default value is
#363636
- background
Color String - The color of a solid background in the login page. The default value is
#f7f7f7
- background
Text StringColor - The color of the text on a solid background in the login page. The default value is
#363636
- background
Color string - The color of a solid background in the login page. The default value is
#f7f7f7
- background
Text stringColor - The color of the text on a solid background in the login page. The default value is
#363636
- background_
color str - The color of a solid background in the login page. The default value is
#f7f7f7
- background_
text_ strcolor - The color of the text on a solid background in the login page. The default value is
#363636
- background
Color String - The color of a solid background in the login page. The default value is
#f7f7f7
- background
Text StringColor - The color of the text on a solid background in the login page. The default value is
#363636
ThemeLoginPageThemeSplitLoginPageParameters, ThemeLoginPageThemeSplitLoginPageParametersArgs
- Content
Type string - The type of content displayed on the side of the screen opposite the login components. Currently, options include
None
andText
. The default value isNone
- Direction string
- The side of the screen where all the login components are placed. Options include
Left
andRight
. The default value isLeft
- Header string
- The header text displayed on the side of the screen opposite the login components. This is only displayed if
content_type
isText
- Secondary
Background stringText Color - The color of the subheader on the side of the screen opposite the login components. The header text in the same area uses the
background_text_color
. The default value is#363636
- Subheader string
- The subheader text displayed on the side of the screen opposite the login components. This is only displayed if
content_type
isText
- Content
Type string - The type of content displayed on the side of the screen opposite the login components. Currently, options include
None
andText
. The default value isNone
- Direction string
- The side of the screen where all the login components are placed. Options include
Left
andRight
. The default value isLeft
- Header string
- The header text displayed on the side of the screen opposite the login components. This is only displayed if
content_type
isText
- Secondary
Background stringText Color - The color of the subheader on the side of the screen opposite the login components. The header text in the same area uses the
background_text_color
. The default value is#363636
- Subheader string
- The subheader text displayed on the side of the screen opposite the login components. This is only displayed if
content_type
isText
- content
Type String - The type of content displayed on the side of the screen opposite the login components. Currently, options include
None
andText
. The default value isNone
- direction String
- The side of the screen where all the login components are placed. Options include
Left
andRight
. The default value isLeft
- header String
- The header text displayed on the side of the screen opposite the login components. This is only displayed if
content_type
isText
- secondary
Background StringText Color - The color of the subheader on the side of the screen opposite the login components. The header text in the same area uses the
background_text_color
. The default value is#363636
- subheader String
- The subheader text displayed on the side of the screen opposite the login components. This is only displayed if
content_type
isText
- content
Type string - The type of content displayed on the side of the screen opposite the login components. Currently, options include
None
andText
. The default value isNone
- direction string
- The side of the screen where all the login components are placed. Options include
Left
andRight
. The default value isLeft
- header string
- The header text displayed on the side of the screen opposite the login components. This is only displayed if
content_type
isText
- secondary
Background stringText Color - The color of the subheader on the side of the screen opposite the login components. The header text in the same area uses the
background_text_color
. The default value is#363636
- subheader string
- The subheader text displayed on the side of the screen opposite the login components. This is only displayed if
content_type
isText
- content_
type str - The type of content displayed on the side of the screen opposite the login components. Currently, options include
None
andText
. The default value isNone
- direction str
- The side of the screen where all the login components are placed. Options include
Left
andRight
. The default value isLeft
- header str
- The header text displayed on the side of the screen opposite the login components. This is only displayed if
content_type
isText
- secondary_
background_ strtext_ color - The color of the subheader on the side of the screen opposite the login components. The header text in the same area uses the
background_text_color
. The default value is#363636
- subheader str
- The subheader text displayed on the side of the screen opposite the login components. This is only displayed if
content_type
isText
- content
Type String - The type of content displayed on the side of the screen opposite the login components. Currently, options include
None
andText
. The default value isNone
- direction String
- The side of the screen where all the login components are placed. Options include
Left
andRight
. The default value isLeft
- header String
- The header text displayed on the side of the screen opposite the login components. This is only displayed if
content_type
isText
- secondary
Background StringText Color - The color of the subheader on the side of the screen opposite the login components. The header text in the same area uses the
background_text_color
. The default value is#363636
- subheader String
- The subheader text displayed on the side of the screen opposite the login components. This is only displayed if
content_type
isText
ThemeManagementPagesTheme, ThemeManagementPagesThemeArgs
- string
- The color of action buttons in the management pages. The default value is
#50c878
- string
- The color of the text on action buttons in the management pages. The default value is
#f7f7f7
- Border
Color string - The color of the border between the navbar and the main content area in the management pages. The default value is
#e4e4e4
- bool
- If true, the sidebar is displayed in the management pages. The default value is
true
- Main
Background stringColor - The background color of the main content area in the management pages. The default value is
#f7f7f7
- Main
Text stringColor - The color of the text in the main content area of the management pages. The default value is
#363636
- string
- The background color of the navigation bar in the management pages. The default value is
#ffffff
- string
- The color of the text in the navigation bar in the management pages. The default value is
#0f0f0f
- string
- The color of action buttons in the management pages. The default value is
#50c878
- string
- The color of the text on action buttons in the management pages. The default value is
#f7f7f7
- Border
Color string - The color of the border between the navbar and the main content area in the management pages. The default value is
#e4e4e4
- bool
- If true, the sidebar is displayed in the management pages. The default value is
true
- Main
Background stringColor - The background color of the main content area in the management pages. The default value is
#f7f7f7
- Main
Text stringColor - The color of the text in the main content area of the management pages. The default value is
#363636
- string
- The background color of the navigation bar in the management pages. The default value is
#ffffff
- string
- The color of the text in the navigation bar in the management pages. The default value is
#0f0f0f
- String
- The color of action buttons in the management pages. The default value is
#50c878
- String
- The color of the text on action buttons in the management pages. The default value is
#f7f7f7
- border
Color String - The color of the border between the navbar and the main content area in the management pages. The default value is
#e4e4e4
- Boolean
- If true, the sidebar is displayed in the management pages. The default value is
true
- main
Background StringColor - The background color of the main content area in the management pages. The default value is
#f7f7f7
- main
Text StringColor - The color of the text in the main content area of the management pages. The default value is
#363636
- String
- The background color of the navigation bar in the management pages. The default value is
#ffffff
- String
- The color of the text in the navigation bar in the management pages. The default value is
#0f0f0f
- string
- The color of action buttons in the management pages. The default value is
#50c878
- string
- The color of the text on action buttons in the management pages. The default value is
#f7f7f7
- border
Color string - The color of the border between the navbar and the main content area in the management pages. The default value is
#e4e4e4
- boolean
- If true, the sidebar is displayed in the management pages. The default value is
true
- main
Background stringColor - The background color of the main content area in the management pages. The default value is
#f7f7f7
- main
Text stringColor - The color of the text in the main content area of the management pages. The default value is
#363636
- string
- The background color of the navigation bar in the management pages. The default value is
#ffffff
- string
- The color of the text in the navigation bar in the management pages. The default value is
#0f0f0f
- str
- The color of action buttons in the management pages. The default value is
#50c878
- str
- The color of the text on action buttons in the management pages. The default value is
#f7f7f7
- border_
color str - The color of the border between the navbar and the main content area in the management pages. The default value is
#e4e4e4
- bool
- If true, the sidebar is displayed in the management pages. The default value is
true
- main_
background_ strcolor - The background color of the main content area in the management pages. The default value is
#f7f7f7
- main_
text_ strcolor - The color of the text in the main content area of the management pages. The default value is
#363636
- str
- The background color of the navigation bar in the management pages. The default value is
#ffffff
- str
- The color of the text in the navigation bar in the management pages. The default value is
#0f0f0f
- String
- The color of action buttons in the management pages. The default value is
#50c878
- String
- The color of the text on action buttons in the management pages. The default value is
#f7f7f7
- border
Color String - The color of the border between the navbar and the main content area in the management pages. The default value is
#e4e4e4
- Boolean
- If true, the sidebar is displayed in the management pages. The default value is
true
- main
Background StringColor - The background color of the main content area in the management pages. The default value is
#f7f7f7
- main
Text StringColor - The color of the text in the main content area of the management pages. The default value is
#363636
- String
- The background color of the navigation bar in the management pages. The default value is
#ffffff
- String
- The color of the text in the navigation bar in the management pages. The default value is
#0f0f0f
Import
As there is only one theme per project there’s no need to specify the id,
$ pulumi import propelauth:index/theme:Theme but requires an id to be specified, so we can use an arbitrary string here.
$ pulumi import propelauth:index/theme:Theme example arbitrary_string_here
Note: The propelauth_theme resource has many default values for attributes set by the provider
if you do not provide them. Carefully review the plan for any unexpected changes before applying.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- propelauth propelauth/terraform-provider-propelauth
- License
- Notes
- This Pulumi package is based on the
propelauth
Terraform Provider.