Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the Shiny default font?

Tags:

r

shiny

What is the Shiny default font? Where to look it up?

library(shiny)

ui <- fluidPage("What font is used here?")

server <- function(input, output, session) {}

shinyApp(ui, server)
like image 483
Joe Avatar asked Dec 29 '17 22:12

Joe


1 Answers

Well using the HTML inspect tool in Internet Explorer we find that Shiny is using "Helvetica Neue",Helvetica,Arial,sans-serif as default text-font and as @Caramiriel already mentioned is this taken from bootstrap.min.css

screenshot of HTML inspect tool show which fonts are used

like image 181
Bertil Baron Avatar answered Nov 17 '22 22:11

Bertil Baron