-
Notifications
You must be signed in to change notification settings - Fork 6
FAQ
DaBluLite edited this page May 15, 2024
·
3 revisions
Project Colorway is the goal to make websites easier to have a theming functionality. Project Colorway's API (WIP, will be released soon) and endpoints offer a simple way to handle "colorways", objects that define specific properties that allow for the API, or any sort of custom implementation to easily turn the 4 colors that these objects define into fully fledged CSS.
A colorway object looks something like this:
{
name: "Colorway",
author: "dablulite",
authorID: "582170007505731594",
accent: "#7cacf8",
primary: "#282828",
secondary: "#474747",
tertiary: "#3c3c3c",
colors: ['accent', 'primary', 'secondary', 'tertiary']
}
DiscordColorways is an implementation of Project Colorway for Discord, building upon the colorway object with its own properties, such as:
{
"dc-import": "", // The pre-built CSS of the colorway, specifically for Discord
}
DiscordColorways are accessible through these 3 means:
- The official CSS Imports
- The BetterDiscord plugin
- The Vencord userplugin
- A modded Discord client.
- A modded Discord client of any sorts
- Basic knowledge on using that mod's Custom/Quick CSS features
- Basic knowledge of
@import
placement in CSS files (Meaning Always on top)
- The BetterDiscord plugin, or
- The Vencord userplugin, as well as basic knowledge on how to set up a Vencord dev build and how to install userplugins.
- No unnessecary UI/UX modifications
- Colorway objects must include all of the fields included in the top of this page