add column background to latex
diff --git a/man/column_spec.Rd b/man/column_spec.Rd
index 9b24b01..81986e4 100644
--- a/man/column_spec.Rd
+++ b/man/column_spec.Rd
@@ -5,7 +5,8 @@
 \title{Specify the look of the selected column}
 \usage{
 column_spec(kable_input, column, width = NULL, bold = FALSE,
-  italic = FALSE, monospace = FALSE)
+  italic = FALSE, monospace = FALSE, color = NULL, background = NULL,
+  border_left = FALSE, border_right = FALSE)
 }
 \arguments{
 \item{kable_input}{Output of \code{knitr::kable()} with \code{format} specified}
@@ -25,6 +26,10 @@
 
 \item{monospace}{A T/F value to control whether the text of the selected column
 need to be monospaced (verbatim)}
+
+\item{color}{A character string for column text color.}
+
+\item{background}{A character string for column background color.}
 }
 \description{
 This function allows users to select a column and then specify
diff --git a/man/kable_styling.Rd b/man/kable_styling.Rd
index 6bb43a2..8402227 100644
--- a/man/kable_styling.Rd
+++ b/man/kable_styling.Rd
@@ -57,7 +57,7 @@
 \item \code{repeat_header_method} can either be \code{append}(default) or \code{replace}
 \item \code{repeat_header_text} is just a text string you want to append on or
 replace the caption.
-\item \code{strip_color} allows users to pick a different color for their strip lines.
+\item \code{stripe_color} allows users to pick a different color for their strip lines.
 }
 }
 \examples{
diff --git a/man/row_spec.Rd b/man/row_spec.Rd
index 8ad0c7d..a344479 100644
--- a/man/row_spec.Rd
+++ b/man/row_spec.Rd
@@ -5,7 +5,7 @@
 \title{Specify the look of the selected row}
 \usage{
 row_spec(kable_input, row, bold = FALSE, italic = FALSE,
-  monospace = FALSE)
+  monospace = FALSE, color = NULL, background = NULL)
 }
 \arguments{
 \item{kable_input}{Output of \code{knitr::kable()} with \code{format} specified}