Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@progress/kendo-theme-default

Package Overview
Dependencies
Maintainers
1
Versions
2286
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@progress/kendo-theme-default

SASS resources for the default Kendo UI theme

  • 10.0.1
  • latest
  • stable
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
174K
decreased by-1.58%
Maintainers
1
Weekly downloads
 
Created

What is @progress/kendo-theme-default?

@progress/kendo-theme-default is a theme package for Kendo UI components. It provides a default styling theme that can be applied to Kendo UI widgets to ensure a consistent and visually appealing design across your application.

What are @progress/kendo-theme-default's main functionalities?

Applying Default Theme to Kendo UI Components

This code imports the default theme CSS file, which applies the default Kendo UI styling to all Kendo UI components in your application.

import '@progress/kendo-theme-default/dist/all.css';

Customizing Theme Variables

This code demonstrates how to customize the default theme by overriding SCSS variables. You can change the primary and secondary colors and then apply the custom theme using the `kendo-theme` mixin.

/* Import the default theme */
@import "~@progress/kendo-theme-default/scss/all";

/* Override variables */
$primary: #ff0000;
$secondary: #00ff00;

/* Apply the custom theme */
@include kendo-theme();

Using Theme with Angular

This code shows how to use the default theme in an Angular application. It imports the theme CSS and applies it to a Kendo UI button component.

import { Component } from '@angular/core';
import '@progress/kendo-theme-default/dist/all.css';

@Component({
  selector: 'my-app',
  template: `<kendo-button>My Kendo Button</kendo-button>`
})
export class AppComponent {}

Other packages similar to @progress/kendo-theme-default

Keywords

FAQs

Package last updated on 08 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc