Introduction to Sparrow
Sparrow is an open source styling framework, which helps Developers to use best styles and components, by using pre-defined classnames. Sparrow helps you to quickly build your Dream Project, by focusing much on Functionality, because we take care of your Designs.
Installation Guide
In order to introduce Sparrow to your project, Copy the Link given below and paste it in the <head> tag of your html, above all other style sheets.
                        
            <link rel="stylesheet" href="https://sparrow-design.netlify.app/css/components.css">
                        
                    
Customizing Themes
Although Sparrow aims at satisfying it's user's need, as much as possible, There are times, when the pre-defined styles are not sufficient.

In order to override Sparrow's base classes, users can add their own class to the pre-existing classes, and style them seperately, as shown below.
                        
                        <button class="btn my-style">CUSTOMIZE</button>
                        
                        <-- Custom class styling -->
                        <style>
                            .my-style{
                                color : black;
                                background-color : pink; 
                            }
                        </style>