Skip to content

Commit

Permalink
more flags
Browse files Browse the repository at this point in the history
  • Loading branch information
ErdaradunGaztea committed Jun 23, 2024
1 parent 40e3418 commit b7ed8a9
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 1 deletion.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# gglgbtq (development version)

* Added `scale_color_lgbtq()` and `scale_fill_lgbtq()` for convenience.
* Implemented the following palettes: `acesthetic`, `analterous`, `asensual`, `ace_spectrum`, `aro_spectrum`, `androsexual`, `gynesexual`, `helian`, `lunarian`, `solarian`, `stellarian`.
* Implemented the following palettes: `acesthetic`, `analterous`, `asensual`, `ace_spectrum`, `aro_spectrum`, `aroace`, `androsexual`, `gynesexual`, `helian`, `lunarian`, `solarian`, `stellarian`, `amatopunk`, `butch`, `femme`.

# gglgbtq 0.1.1

Expand Down
13 changes: 13 additions & 0 deletions R/data.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ pride_data <- list(
aro_spectrum = list(
colors = c("#3FA053", "#96D07C", "#F3FCCF", "#176363", "#052027")
),
aroace = list(
colors = c("#E28C00", "#ECCD00", "#FFFFFF", "#62AEDC", "#203856")
),
alloace = list(
colors = c("#D50100", "#F85858", "#FFFFFF", "#81007F")
),
Expand Down Expand Up @@ -105,5 +108,15 @@ pride_data <- list(
),
bigender = list(
colors = c("#C479A2", "#EDA5CD", "#D6C7E8", "#FFFFFF", "#9AC7E8", "#6D82D1")
),
# Subcultures
amatopunk = list(
colors = c("#531768", "#B74D71", "#DB966D", "#FFE7AA", "#4E8C69")
),
butch = list(
colors = c("#324070", "#6A7AA4", "#8A92A9", "#EDECEB", "#C0B4DB", "#764EC5", "#51048A")
),
femme = list(
colors = c("#7D0037", "#DE42F1", "#FDFDFD", "#F29C41", "#9E470E")
)
)
4 changes: 4 additions & 0 deletions man/palette_lgbtq.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions man/theme_lgbtq.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions vignettes/gallery.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,12 @@ palette_lgbtq("aro_spectrum")

"Aromantic spectrum" (also called "aro spectrum" or "arospec") is an umbrella term for all romantic orientations characterized by a complete or partial lack of romantic attraction, e.g. "aromantic", "demiromantic", "grayromantic"... analogously to "ace spectrum".

```{r aroace}
palette_lgbtq("aroace")
```

"Aroace" is a term for individuals experiencing neither romantic nor sexual attration; in other words, "aromantic asexual".

```{r alloace}
palette_lgbtq("alloace")
```
Expand Down Expand Up @@ -244,6 +250,26 @@ palette_lgbtq("bigender")

"Bigender" means a gender identity composed of two genders a person feels strong connection with. They may exist simultaneously or fluctuate over time. One of the two genders is probably stolen from some agender person.

## Subcultures

```{r amatopunk}
palette_lgbtq("amatopunk")
```

Amatopunks challenge the amatonormativity, i.e. the societal expectations that everybody should desire a monogamous sexual and romantic relationship, exclusive towards polyamorous, asexual, and aromantic people (as in, belonging to any of these three groups).

```{r butch}
palette_lgbtq("butch")
```

"Butch" is a term most commonly used to describe a lesbian with a masculine expression. There exists a variant with 5 stripes too, albeit far less prevalent.

```{r femme}
palette_lgbtq("femme")
```

"Femme" is a term most commonly used to describe a lesbian with a feminine expression. There are a lot of different proposed flags yet none in predominant use, and the one included here was chosen for the best distinguishability of its colors.

## Uncategorized

All the terms that do not fit elsewhere. Currently empty.

0 comments on commit b7ed8a9

Please sign in to comment.