Package 'corazon'

Title: Apply 'colorffy' Color Gradients Within 'shiny' Elements
Description: Allows the user to apply nice color gradients to 'shiny' elements. The gradients are extracted from the 'colorffy' website. See <https://www.colorffy.com/gradients/catalog>.
Authors: Mohamed El Fodil Ihaddaden [aut, cre], Hadjer Haned [ctb]
Maintainer: Mohamed El Fodil Ihaddaden <[email protected]>
License: MIT + file LICENSE
Version: 0.1.0
Built: 2024-08-21 02:29:00 UTC
Source: https://github.com/feddelegrand7/corazon

Help Index


Display available gradient colors

Description

the function displays the available gradient colors contained within the package along with their corresponding hex colors

Usage

available_gradients()

Value

a character vector

Examples

available_gradients()

Display a linear gradient color within shiny elements

Description

Display a linear gradient color within shiny elements

Usage

corazon_gradient(
  element = "body",
  direction = "right",
  colorName = "LIFE",
  txtColor = "#F2F2F2"
)

Arguments

element

the shiny element that will incorporate the gradient color ? Defaults to "body"

direction

the direction of the gradient, between "right", "left", "bottom", "top". Defaults to "right"

colorName

the name of the gradient color to apply. see https://www.colorffy.com/gradients/catalog

txtColor

the text color. Default to "#F2F2F2" (white)

Value

A linear gradient color applied on a specific shiny element

Examples

if(interactive()){

ui <- fluidPage(


corazon_gradient(txtColor = "blue"),


h1("This is a Title"),

)

server <- function(input, output) {

}

# Run the application


shinyApp(ui = ui, server = server)

}

colorffy gradient color data set

Description

A data set containing the gradient colors available at the colorffy website

Usage

gradient

Format

A data frame containing all the the gradient colors:

  • g_name: the name of the gradients as displayed within the colorffy website.

  • hex1: the first hex color code

  • hex2: the second hex color code

  • hex3: the third hex color code