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
@import url('https://fonts.googleapis.com/css2?family={{font_name}}:ital,wght@{{font_weight}}&display=swap'); | |
* { | |
font-family: '{{font_name}}', cursive; | |
color: {{font_color}} !important; | |
font-size: {{font_size}}px !important; | |
font-weight: {{font_weight}} !important; | |
-webkit-text-stroke: {{font_border_size}}px {{font_border_color}}; | |
} |
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
@import url('https://fonts.googleapis.com/css2?family={font_name}&display=swap'); | |
:root { | |
--background-color: {{background_color}}; | |
--accent-color: {{accent_color}}; | |
--text-color: {{text_color}}; | |
--text-accent-color: {{text_accent_color}}; | |
--icon-color: {{icon_color}}; | |
--spacer-width: {{spacer_width}}px; | |
--spacer-margin: {{spacer_margin}}px; |
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
@import url('https://fonts.googleapis.com/css2?family={font_name}&display=swap'); | |
:root { | |
--background-color: {{background_color}}; | |
--accent-color: {{accent_color}}; | |
--text-color: {{text_color}}; | |
--text-accent-color: {{text_accent_color}}; | |
--icon-color: {{icon_color}}; | |
--spacer-width: {{spacer_width}}px; | |
--spacer-margin: {{spacer_margin}}px; |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Text; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace Snake | |
{ | |
class Program |
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
//Require Discord.js | |
const Discord = require('discord.js') | |
//Require config.json | |
const config = require('./config.json') | |
//Create a new bot Account | |
const bot = new Discord.Client() | |
//Create a variable called responseObject containing responses for certain commands. |
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
//Require Discord.js | |
const Discord = require('discord.js') | |
//Create a new bot Account | |
const bot = new Discord.Client() | |
//Bot token | |
const token = 'Your bot token here' | |
//Logging in with the bot Account |