<!DOCTYPE html>
<html>
<head>
- {{ bootstrapLib(theme = bslib::bs_theme(primary = "red")) }}
+ {{ bootstrapLib(theme = bslib::bs_theme(primary = "black")) }}
{{ headContent() }}
<title>Rnaught Web</title>
<link rel="stylesheet" type="text/css" href="styles.css">
counts <- tokenize_counts(input$data_counts)
if (length(counts) > 0 && !anyNA(counts) && all(counts >= 0)) {
output$data_plot <- renderPlot(
- plot(seq_along(counts) - 1, counts, type = "o", pch = 16, col = "red",
+ plot(seq_along(counts) - 1, counts, type = "o", pch = 16, col = "black",
xlab = input$data_units, ylab = "Cases", cex.lab = 1.5,
xlim = c(0, max(length(counts) - 1, 1)), ylim = c(0, max(counts, 1))
)