npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

opensuse-theme-chameleon

v1.2.0

Published

Vivid UI theme for openSUSE websites

Downloads

11

Readme

Chameleon

Vivid UI theme for openSUSE websites. Based on Bootstrap 4.1. Apply openSUSE Brand Guidelines and openSUSE Artwork.

openSUSE Software

openSUSE Wiki

Download

Directly download

Download latest releases

NPM install

npm install opensuse-theme-chameleon --save

Ruby Gem install

TODO

PHP Composer install

TODO

Import

HTML link

Compiled CSS, JavaScript, fonts and some SVG images are inside dist folder. You can directly include/link these files in your HTML template.

Link CSS:

<link rel="stylesheet" type="text/css" href="path/to/chameleon/dist/css/chameleon.css"  />

Link JavaScript:

  1. with jQuery

    <script src="path/to/chameleon/dist/js/chameleon.js"></script>
  2. without jQuery (for MediaWiki, WordPress, etc. which already provide jQuery):

    <script src="path/to/chameleon/dist/js/chameleon-no-jquery.js"></script>

Gulp/Webpack import

If you have a lot of stuff to customize, use a build system like Gulp, Webpack, like what we do for openSUSE wiki. You can use a lot of SaSS features to make beautiful components.

Gulp configuration example

Import SCSS:

@import "~opensuse-theme-chameleon/src/scss/chameleon";

Import JavaScript:

  1. Old way, without ES6 support

    require("opensuse-theme-chameleon");
    // or
    require("opensuse-theme-chameleon/dist/js/chameleon-no-jquery.js");
  2. New way, with ES6 support

    import "opensuse-theme-chameleon";
    // or
    import "opensuse-theme-chameleon/dist/js/chameleon-no-jquery.js";

Ruby on Rails import

TODO

Bootstrap 4 Styles and Components

Read the Bootstrap 4 document

Chameleon Styles

Chameloen has some customization to Bootstrap 4. You can reuse these colors and fonts in your styles.

Colors

| openSUSE colors | Value | Bootstrap colors | | ---------------- | ------- | ---------------- | | $opensuse-green | #73ba25 | $brand-success | | $opensuse-dark | #173f4f | $brand-inverse | | $opensuse-cyan | #35b9ab | $brand-primary | | $opensuse-cyan2 | #00a489 | $link-color | | $opensuse-green2 | #6da741 | | | $opensuse-blue | #21a4df | $brand-info |

Fonts

Default

  • Font family: Open Sans, Source Sans Pro, sans-serif
  • Font weight: 400
  • Font style: normal

Title and heading

  • Font family: Open Sans Condensed, Source Sans Pro, sans-serif
  • Font weight: 700

Source code and commands

  • Font family: Source Code Pro, monospace
  • Font weight: 400

Icons

Use Typicons as basic icon set for UI. See http://typicons.com/.

<span class="typcn typcn-arrow-left"></span>

For icons not covered by Typicons, we create our own in SVG format.

Translations

The theme is shipped with some translations for navbar and footer links, so that our translators won't need to translate the same content for each site.

<a class="nav-link l10n" data-msg-id="software" href="https://software.opensuse.org/">
  Software
</a>

Class l10n makes the element localizable. data-msg-id attribute defines the message key so that it can be find in translation files.