Skip to content

Commit

Permalink
blue -> blurple
Browse files Browse the repository at this point in the history
  • Loading branch information
timpehoerig committed Jul 6, 2023
1 parent 2bf478c commit ca6dae1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
about_embed = Embed(
type="rich",
title="About this Discord Server",
colour=Colour.blue(),
colour=Colour.blurple(),
timestamp=datetime.now(),
description=about_embed_description,
)
Expand Down Expand Up @@ -49,7 +49,7 @@ class AuthTokenInput(Modal, title="Enter Authentication Token"):
type="rich",
title="Login using University Account",
url=env.url + "auth/token",
colour=Colour.blue(),
colour=Colour.blurple(),
timestamp=datetime.now(),
description=auth_embed_description,
)
Expand Down Expand Up @@ -96,7 +96,7 @@ class AccountNameInput(Modal, title="Change Nickname"):
account_embed = Embed(
type="rich",
title="Manage Your Connected Account",
colour=Colour.blue(),
colour=Colour.blurple(),
timestamp=datetime.now(),
description=account_embed_description,
)
Expand Down Expand Up @@ -143,7 +143,7 @@ class OffTopicChannelRequestInput(Modal, title="Request an off-topic Channel"):
channel_embed = Embed(
type="rich",
title="Request a text channel",
colour=Colour.blue(),
colour=Colour.blurple(),
timestamp=datetime.now(),
description=channels_embed_description,
)
Expand Down Expand Up @@ -202,7 +202,7 @@ async def channel_request_decline_modal(modal_interaction: Interaction):
accept_channel_request_embed = Embed(
type="rich",
title="Request a text channel",
colour=Colour.blue(),
colour=Colour.blurple(),
timestamp=datetime.now(),
description=f"Requesting a Channel:\n\tName of the Lecture:\t{input.name_of_lecture.value}\n\tKind of Lecture:\t{input.kind_of_lecture.value}\n\tName of Channel:\t{input.name_of_channel.value}"
)
Expand Down Expand Up @@ -262,7 +262,7 @@ async def off_topic_channel_request_decline_modal(modal_interaction: Interaction
accept_off_topic_channel_request_embed = Embed(
type="rich",
title="Request an off-topic channel",
colour=Colour.blue(),
colour=Colour.blurple(),
timestamp=datetime.now(),
description=f"Requesting an off-topic Channel:\n\tName of the Channel:\t{input.name_of_channel.value}\n\tDescription:\t{input.description.value}"
)
Expand Down

0 comments on commit ca6dae1

Please sign in to comment.