React95

🌈🕹 Windows 95 style UI component library for React
Alternatives To React95
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Nextui15,895613 days ago263August 01, 202382mitTypeScript
🚀 Beautiful, fast and modern React UI library.
Semantic Ui React13,0888,4651,234a month ago155February 28, 2023192mitJavaScript
The official Semantic-UI-React integration
Evergreen12,233751012 days ago267June 21, 202373mitJavaScript
🌲 Evergreen React UI Framework by Segment
Primitives11,934699 days ago34June 05, 2023298mitTypeScript
Radix Primitives is an open-source UI component library for building high-quality, accessible design systems and web apps. Maintained by @workos.
React Spectrum9,54714233a day ago507August 04, 2023533apache-2.0TypeScript
A collection of libraries and tools that help you build adaptive, accessible, and robust user experiences.
Fast8,610844 days ago78June 16, 2023387otherTypeScript
The adaptive interface system for modern web experiences.
Baseweb8,44522783 days ago969August 01, 2023198mitTypeScript
A React Component library implementing the Base design language
React955,995355 months ago95November 13, 202239mitTypeScript
🌈🕹 Windows 95 style UI component library for React
Polaris5,46012978a day ago1,330August 08, 2023573otherTypeScript
Shopify’s design system to help us work together to build a great experience for all of our merchants.
Primereact4,584164257a day ago128August 01, 2023249mitCSS
The Most Complete React UI Component Library
Alternatives To React95
Select To Compare


Alternative Project Comparisons
Readme

React95

NPM release status React95 version React95 license React95 license

Components - Demo app - React Native - Slack - PayPal donation

Refreshed Windows95 UI components for your modern React apps.
Built with styled-components

hero

Support

Getting Started

First, install component library and styled-components in your project directory:

# yarn
$ yarn add react95 styled-components

# npm
$ npm install react95 styled-components

Apply style reset, wrap your app with ThemeProvider with theme of your choice... and you are ready to go!

import React from 'react';
import { createGlobalStyle, ThemeProvider } from 'styled-components';

import { MenuList, MenuListItem, Separator, styleReset } from 'react95';
// pick a theme of your choice
import original from 'react95/dist/themes/original';
// original Windows95 font (optionally)
import ms_sans_serif from 'react95/dist/fonts/ms_sans_serif.woff2';
import ms_sans_serif_bold from 'react95/dist/fonts/ms_sans_serif_bold.woff2';

const GlobalStyles = createGlobalStyle`
  ${styleReset}
  @font-face {
    font-family: 'ms_sans_serif';
    src: url('${ms_sans_serif}') format('woff2');
    font-weight: 400;
    font-style: normal
  }
  @font-face {
    font-family: 'ms_sans_serif';
    src: url('${ms_sans_serif_bold}') format('woff2');
    font-weight: bold;
    font-style: normal
  }
  body {
    font-family: 'ms_sans_serif';
  }
`;

const App = () => (
  <div>
    <GlobalStyles />
    <ThemeProvider theme={original}>
      <MenuList>
        <MenuListItem> Sing</MenuListItem>
        <MenuListItem> Dance</MenuListItem>
        <Separator />
        <MenuListItem disabled> Sleep</MenuListItem>
      </MenuList>
    </ThemeProvider>
  </div>
);

export default App;

Submit your project

Apps built with React95 will be featured on the official React95 website

Contributing

Any help from UI / UX designers would be EXTREMELY appreciated. The challenge is to come up with new component designs / layouts that are broadly used in modern UIs, that weren't present back in 95.

If you want to help with the project, feel free to open pull requests and submit issues or component proposals. Let's bring this UI back to life

Popular Reactjs Projects
Popular Component Library Projects
Popular Web User Interface Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Reactjs
Styled Components
Design System
Component Library