Giter VIP home page Giter VIP logo

vscode-cosmic's Introduction

Cosmic Theme

Version

Cosmic is a minimalistic dark theme with brilliant colors, built for Visual Studio Code.

Note: this first release has been tested mainly with JavaScript (JSX), HTML and CSS (LESS, Sass), but it still needs fixes. Pull requests are welcome.

Preview:

Screenshot

vscode-cosmic's People

Contributors

carmelopullara avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

covertbert

vscode-cosmic's Issues

Broken syntax highlighting

Left you a comment on VSCode marketplace but in case you don't see it there.

Really nice theme that I'd love to use every day, but there is unfortunately some missing syntax highlighting in React when declaring PropTypes which is stopping me from being able to rate 5 stars. Here's a screenshot:

Screenshot

Here's the code for the whole file to debug

import React from 'react'
import PropTypes from 'prop-types'
import { Card, Text, Box, Button, Heading } from 'gestalt'

import GenericLayout from '../../components/GenericLayout'

const PlayerManagement = ({
players,
deletePlayer,
}) => (
<GenericLayout>

<Heading>Players</Heading>

<Box
marginTop={8}
column={12}
>
{players.map((player) => (
<Box
key={player.id}
marginBottom={5}
paddingY={5}
paddingX={5}
column={12}
color="lightGray"
>
<Card paddingY={10}>
<Text
align="center"
bold
size="xl"
>
<Box
marginBottom={3}
paddingX={1}
paddingY={1}
>
{player.name}
</Box>
</Text>
<Button
accessibilityLabel="Delete player"
color="red"
text="Delete"
onClick={() => { deletePlayer(player.id) }}
/>
</Card>
</Box>
))}
</Box>
</GenericLayout>
)

PlayerManagement.propTypes = {
players: PropTypes.array.isRequired,
deletePlayer: PropTypes.func.isRequired,
}

export default PlayerManagement

Can't run the theme in debug mode

I'm trying to address the issue I raised in the other ticket by fixing it myself and submitting a PR but it seems like you've removed the ability to run the extension in debug mode. Is this the case or am I doing something wrong?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.