Enhance the aesthetics of your console output with ease. Say goodbye to plain and boring console logs and welcome beautifully styled messages that make an impact.
- Customize Console Messages: Add colors, backgrounds, font sizes, and padding to make your console output visually appealing.
- Express Excitement: Announce important milestones like hitting star milestones or releasing new features with eye-catching messages.
- Seamless Integration: StyleConsole seamlessly integrates with your existing JavaScript codebase, making it easy to upgrade your console output.
- Include
js
file in your project. - Use the
console.log()
method with custom styling options to create visually appealing console messages.
console.log('%cπ Welcome to My Github Repo! π', 'background: #FFD700; color: #000; font-size: 24px; padding: 10px;');
console.log('%cπ₯ Exciting News! π₯', 'background: #FF4136; color: #FFF; font-size: 18px; padding: 8px;');
console.log('%cπ New Feature Alert: Introducing SuperFeature! π', 'background: #0074D9; color: #FFF; font-size: 18px; padding: 8px;');
console.log('%cπ Release v1.2.0 is now available! Upgrade today! π', 'background: #2ECC40; color: #000; font-size: 18px; padding: 8px;');