Skip to content

Commit

Permalink
changed base_family font to blank
Browse files Browse the repository at this point in the history
  • Loading branch information
JLSteenwyk committed Oct 15, 2020
1 parent 9b64ae2 commit e821cca
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion R/theme_big_simple.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#'
#' @export
theme_big_simple <- function () {
theme_bw(base_size=16, base_family="Arial") %+replace%
theme_bw(base_size=16, base_family="") %+replace%
theme(
plot.background = element_rect(fill="transparent", colour=NA),
legend.background = element_rect(fill="transparent", colour=NA),
Expand Down
2 changes: 1 addition & 1 deletion R/theme_black.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#'
#' @export
theme_black <- function () {
theme_bw(base_size=12, base_family="Arial") %+replace%
theme_bw(base_size=12, base_family="") %+replace%
theme(
plot.background = element_rect(fill="black", colour=NA),
legend.background = element_rect(fill="transparent", colour=NA),
Expand Down
2 changes: 1 addition & 1 deletion R/theme_blue.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#'
#' @export
theme_blue <- function () {
theme_bw(base_size=12, base_family="Arial") %+replace%
theme_bw(base_size=12, base_family="") %+replace%
theme(
plot.background = element_rect(fill="dodgerblue4", colour=NA),
legend.background = element_rect(fill="transparent", colour=NA),
Expand Down
2 changes: 1 addition & 1 deletion R/theme_grey.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#'
#' @export
theme_grey <- function () {
theme_bw(base_size=12, base_family="Arial") %+replace%
theme_bw(base_size=12, base_family="") %+replace%
theme(
plot.background = element_rect(fill="transparent", colour=NA),
legend.background = element_rect(fill="transparent", colour=NA),
Expand Down
2 changes: 1 addition & 1 deletion R/theme_grid.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#'
#' @export
theme_grid <- function () {
theme_bw(base_size=12, base_family="Arial") %+replace%
theme_bw(base_size=12, base_family="") %+replace%
theme(
plot.background = element_rect(fill="transparent", colour=NA),
legend.background = element_rect(fill="transparent", colour=NA),
Expand Down
2 changes: 1 addition & 1 deletion R/theme_red.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#'
#' @export
theme_red <- function () {
theme_bw(base_size=12, base_family="Arial") %+replace%
theme_bw(base_size=12, base_family="") %+replace%
theme(
plot.background = element_rect(fill="firebrick4", colour=NA),
legend.background = element_rect(fill="transparent", colour=NA),
Expand Down
2 changes: 1 addition & 1 deletion R/theme_simple.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#'
#' @export
theme_simple <- function () {
theme_bw(base_size=12, base_family="Arial") %+replace%
theme_bw(base_size=12, base_family="") %+replace%
theme(
plot.background = element_rect(fill="transparent", colour=NA),
legend.background = element_rect(fill="transparent", colour=NA),
Expand Down

0 comments on commit e821cca

Please sign in to comment.