Nord Color Palette

repository·develop·Indexed 27 days ago

https://github.com/nordtheme/nord

An arctic, north-bluish color palette consisting of sixteen dimmed pastel colors (nord0 to nord15) designed for eye-comfortable, minimal, and flat designs. It provides palettes for various syntactic meanings in both dark and bright ambiances.

Tokens
417
Snippets
2
Records
3
Agent score
42%

What's inside nord

  1. Overview of Nord color palette

    develop
    Nord is an arctic, north-bluish color palette consisting of sixteen carefully selected, dimmed pastel colors designed for clear, uncluttered, and elegant designs. It follows a minimal and flat style pattern. The palette is organized into four named color palettes providing different syntactic meanings and color effects for dark and bright ambiance designs. Colors are numbered from nord0 to nord15 to maintain compatibility with terminal color schemes.
  2. Configure Prettier for the Nord project

    develop

    The project uses a custom Prettier configuration to manage code formatting. It sets a wide printWidth of 160 and includes specific parser overrides for .less, .scss, and .sh files (specifically within the .husky/ directory) to ensure correct formatting for these languages.

    module.exports = {
      printWidth: 160,
      overrides: [
        {
          files: ["*.less"],
          options: {
            parser: "less",
          },
        },
        {
          files: ["*.scss"],
          options: {
            parser: "scss",
          },
        },
        {
          files: [".husky/*"],
          options: {
            parser: "sh",
          },
        },
      ],
    };