Created
December 17, 2022 02:12
-
-
Save kjhealy/74e3f95bcbae3dee2f864c2dbbdae7fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This is in /Applications/RStudio.app/Contents/Resources/app/resources/R.css | |
/* | |
* R.css | |
* | |
* Copyright (C) 2022 by Posit Software, PBC | |
* | |
* Unless you have received this program directly from Posit Software pursuant | |
* to the terms of a commercial license agreement with Posit Software, then | |
* this program is licensed to you under the terms of version 3 of the | |
* GNU Affero General Public License. This program is distributed WITHOUT | |
* ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT, | |
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Please refer to the | |
* AGPL (http://www.gnu.org/licenses/agpl-3.0.txt) for more details. | |
* | |
*/ | |
body, td { | |
font-family: sans-serif; | |
font-size: 10pt; | |
} | |
body.macintosh, body.macintosh td { | |
font-family: "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
} | |
body.macintosh code, | |
body.macintosh pre { | |
font-family: "Berkeley Mono", monospace; | |
} | |
::selection { | |
background: rgb(181, 213, 255); | |
} | |
::-moz-selection{ | |
background: rgb(181, 213, 255); | |
} | |
a:visited { | |
color: rgb(50%, 0%, 50%); | |
} | |
h1 { | |
font-size: x-large; | |
} | |
h2 { | |
font-size: x-large; | |
font-weight: normal; | |
} | |
h3 { | |
color: rgb(35%, 35%, 35%); | |
} | |
h4 { | |
color: rgb(35%, 35%, 35%); | |
font-style: italic; | |
} | |
h5 { | |
color: rgb(35%, 35%, 35%); | |
} | |
h6 { | |
color: rgb(35%, 35%, 35%); | |
font-style: italic; | |
} | |
.rstudio-themes-dark-grey h1, | |
.rstudio-themes-dark-grey h2, | |
.rstudio-themes-dark-grey h3, | |
.rstudio-themes-dark-grey h4, | |
.rstudio-themes-dark-grey h5, | |
.rstudio-themes-dark-grey h6 { | |
color: inherit; | |
} | |
.rstudio-themes-dark-grey *::selection, | |
.rstudio-themes-dark-grey *::selection { | |
background: rgba(255, 255, 255, 0.15); | |
color: #FFF; | |
} | |
img.toplogo { | |
max-width: 4em; | |
vertical-align: middle; | |
} | |
img.arrow { | |
width: 30px; | |
height: 30px; | |
border: 0; | |
} | |
span.acronym { | |
font-size: small; | |
} | |
span.env { | |
font-family: monospace; | |
} | |
span.file { | |
font-family: monospace; | |
} | |
span.option { | |
font-family: monospace; | |
} | |
span.pkg { | |
font-weight: bold; | |
} | |
span.samp { | |
font-family: monospace; | |
} | |
div.vignettes a:hover { | |
background: rgb(85%, 85%, 85%); | |
} | |
table p { | |
margin-top: 0; | |
margin-bottom: 6px; | |
} | |
table[summary="R argblock"] tr td:first-child { | |
min-width: 24px; | |
padding-right: 12px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment