NFL Team names, colors and logo urls.
Format
A data frame with 36 rows and 10 variables containing NFL team level information, including franchises in multiple cities:
- team_abbr
Team abbreviation
- team_name
Complete Team name
- team_id
Team id used in the roster function
- team_nick
Nickname
- team_conf
Conference
- team_division
Division
- team_color
Primary color
- team_color2
Secondary color
- team_color3
Tertiary color
- team_color4
Quaternary color
- team_logo_wikipedia
Url to Team logo on wikipedia
- team_logo_espn
Url to higher quality logo on espn
- team_wordmark
Url to team wordmarks
- team_conference_logo
Url to AFC and NFC logos
- team_league_logo
Url to NFL logo
The primary and secondary colors have been taken from nfl.com with some modifications
for better team distinction and most recent team color themes.
The tertiary and quaternary colors are taken from Lee Sharpe's teamcolors.csv
who has taken them from the teamcolors
package created by Ben Baumer and
Gregory Matthews. The Wikipeadia logo urls are taken from Lee Sharpe's logos.csv
Team wordmarks from nfl.com
Examples
# \donttest{
teams_colors_logos
#> # A tibble: 36 × 15
#> team_abbr team_name team_id team_…¹ team_…² team_…³ team_…⁴ team_…⁵ team_…⁶
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 ARI Arizona Ca… 3800 Cardin… NFC NFC We… #97233F #000000 #ffb612
#> 2 ATL Atlanta Fa… 0200 Falcons NFC NFC So… #A71930 #000000 #a5acaf
#> 3 BAL Baltimore … 0325 Ravens AFC AFC No… #241773 #9E7C0C #9e7c0c
#> 4 BUF Buffalo Bi… 0610 Bills AFC AFC Ea… #00338D #C60C30 #0c2e82
#> 5 CAR Carolina P… 0750 Panthe… NFC NFC So… #0085CA #000000 #bfc0bf
#> 6 CHI Chicago Be… 0810 Bears NFC NFC No… #0B162A #C83803 #0b162a
#> 7 CIN Cincinnati… 0920 Bengals AFC AFC No… #FB4F14 #000000 #000000
#> 8 CLE Cleveland … 1050 Browns AFC AFC No… #FF3C00 #311D00 #a5acaf
#> 9 DAL Dallas Cow… 1200 Cowboys NFC NFC Ea… #002244 #B0B7BC #acc0c6
#> 10 DEN Denver Bro… 1400 Broncos AFC AFC We… #002244 #FB4F14 #00234c
#> # … with 26 more rows, 6 more variables: team_color4 <chr>,
#> # team_logo_wikipedia <chr>, team_logo_espn <chr>, team_wordmark <chr>,
#> # team_conference_logo <chr>, team_league_logo <chr>, and abbreviated
#> # variable names ¹team_nick, ²team_conf, ³team_division, ⁴team_color,
#> # ⁵team_color2, ⁶team_color3
# }