1.1.4 • Published 10 months ago

epic-rainbow-terminal v1.1.4

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

🌈 Epic Rainbow Terminal

📦 Installation

npm i epic-rainbow-terminal

🖊️ Authors

  • The code is originally made by @musicmaker (Discord). But it was packaged by @fuzzx (Discord).

✨ Features

  • Makes you a rainbow terminal. This package has these colors: red, orange, green, blue, yellow, pink, purple, indigo, white and many more!

📃 Discord.js v14 Example

const { SlashCommandBuilder } = require('discord.js');
const rainbow = require('epic-rainbow-terminal')

module.exports = {
    data: new SlashCommandBuilder()
    .setName('terminal')
    .setDescription('The rainbow terminal test!'),
    async execute (interaction) {
        rainbow.fantasy("Fantasy")
        rainbow.important("Important")
        rainbow.info("Info")
        rainbow.warn("Warn")
        rainbow.error("Error")
        rainbow.success("Success")
        rainbow.debug("Debug")
        rainbow.creative("Creative")
        rainbow.nonimportant("Non Important")
        rainbow.metal("Metal")
        rainbow.gold("Gold")
        rainbow.silver("Silver")
        rainbow.aqua("Aqua")
        rainbow.purple("Purple")
        rainbow.bold("Bold")

        await interaction.reply({ content: `Worked! Check your __terminal__!`, ephemeral: true })
    }
}

🎨 Supported Styles

// Yellow Timestamp + White Bold Text
rainbow.bold()
// Purple
rainbow.purple()
// Violet
rainbow.fantasy()
// Aqua
rainbow.aqua()
// Pink
rainbow.creative()
// Indigo
rainbow.important()
// Yellow
rainbow.info()
// Orange
rainbow.warn()
// Red
rainbow.error()
// Green
rainbow.success()
// Blue
rainbow.debug()
// White
rainbow.nonimportant()
// Grey
rainbow.metal()
// Gold
rainbow.gold()
// Silver
rainbow.silver()
1.1.4

10 months ago

1.1.3

10 months ago

1.1.2

10 months ago

1.1.1

10 months ago

1.1.0

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago