Eyecons

Advanced VS Code Icon Theme

Try it out

Choose your favorite editor color theme to see how the icons will look in it.

  • AppleScript
  • Astro
  • Audio
  • Babel
  • Browserslist
  • C
  • C++
  • C#
  • CoffeeScript
  • CommitLint
  • CSS
  • Docker
  • EditorConfig
  • Elixir
  • Elm
  • ESLint
  • F#
  • Git
  • Go
  • GraphQL
  • Gulp
  • Haskell
  • HTML
  • Image
  • Java
  • JavaScript
  • Jest
  • JSON
  • License
  • Less
  • Markdown
  • MDX
  • Nano Staged
  • Netlify
  • Nginx
  • NodeJS
  • npm
  • Perl
  • PHP
  • pnpm
  • PostCSS
  • Prettier
  • Python
  • React
  • Readme
  • Sass
  • Scala
  • Storybook
  • StyleLint
  • Stylus
  • Svelte
  • SVG
  • SVGO
  • Swift
  • Tailwind
  • TypeScript
  • Vercel
  • Vite
  • Vitest
  • VS Code
  • Vue
  • Webpack
  • XML
  • Yaml
  • Yarn
import type { FC } from 'react'

import { createRoot } from 'react-dom/client'
import { useState } from 'react'

const Counter: FC = () => {
  const [count, setCount] = useState(0)

  const increment = () => {
    setCount(count + 1)
  }

  return (
    <>
      <h1>{count}</h1>
      <button onClick={increment}>
        Increment
      </button>
    </>
  )
}

const root = createRoot(
  document.getElementById('root')
)

root.render(<Counter />)

Icons

Easily enhance your workspace with icons designed for clarity and functionality.Is there some icon missing?Request Icon

Themes

Eyecons ensures your icons look great with any VS Code theme, keeping your environment visually consistent.Haven't found your favorite color theme?Request Theme