• Stars
    star
    216
  • Rank 183,179 (Top 4 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created almost 2 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

css-in-js library with antd v5 token system

antd-style

NPM version NPM downloads install size

Test CI status Rlease CI Coverage

 docs by dumi Build With father

Introduction

A business-level css-in-js solution built on the Ant Design V5 Token System. It is based on emotion at the bottom.

  • ๐Ÿงฉ Token System: Default integration of Ant Design V5 Token System, making style customization easy, and token consumption flexible and easy to use;
  • ๐ŸŒ“ One-click Dark Mode Switching: Based on antd v5 cssinjs dynamic theme configuration and dark theme algorithm encapsulation, it provides an easy-to-use light and dark theme switching capability for application-level scenarios, making it easier to use;
  • ๐ŸŽจ Flexible Custom Theme Extension: Ant Design Style provides the functionality of custom tokens and custom styles. When the default tokens of antd cannot meet the style requirements, you can flexibly extend your own theme system and freely consume it in CSS in JS;
  • ๐Ÿ‚ Smooth Migration from less: Need to migrate an old project? Using antd-style can smoothly migrate less in the project to CSS in JS at a lower cost, and provide a better user experience and development experience;
  • โ˜ฏ๏ธ Good Compatibility with Micro-Apps: Ant Design Style is compatible with qiankun micro-apps by default (but may sacrifice some performance). At the same time, it provides performance optimization options for scenarios that do not require micro-apps;
  • ๐Ÿ“ฑ Easy Adaptation for Responsive Design: Ant Design Style will provide convenient utility functions for responsive applications, helping developers quickly complete responsive theme development;
  • ๐Ÿชด Stylish: Ant Design Style provides the ability to compose complex interactive styles through the combination of multiple atomic tokens, achieving a high degree of reusability;
  • ๐ŸŒฐ Documentation and Application Examples: Show various examples of components and applications using Ant Design Style, helping developers get started quickly. (This document is also built using Ant Design Style for styling)

Quick Start

Installation

It is recommended to install using pnpm

pnpm i antd-style -S

Typical Use Cases

Create Styles

import { createStyles } from 'antd-style';

const useStyles = createStyles(({ token, css }) => ({
  // Supports the writing style of css object
  container: {
    backgroundColor: token.colorBgLayout,
    borderRadius: token.borderRadiusLG,
    maxWidth: 400,
    width: '100%',
    height: 180,
    display: 'flex',
    alignItems: 'center',
    justifyContent: 'center',
    flexDirection: 'column',
    marginLeft: 'auto',
    marginRight: 'auto',
  },
  // Also supports obtaining the same writing experience as normal css through css string templates
  card: css`
    box-shadow: ${token.boxShadow};
    padding: ${token.padding}px;
    border-radius: ${token.borderRadius}px;
    color: ${token.colorTextTertiary};
    background: ${token.colorBgContainer};
    transition: all 100ms ${token.motionEaseInBack};

    margin-bottom: 8px;
    cursor: pointer;

    &:hover {
      color: ${token.colorTextSecondary};
      box-shadow: ${token.boxShadowSecondary};
    }
  `,
}));

export default () => {
  // The styles object in the useStyles method is cached by default, so there is no need to worry about re-rendering issues
  const { styles, cx, theme } = useStyles();

  return (
    // Use cx to organize className
    <div className={cx('a-simple-create-style-demo-classname', styles.container)}>
      <div className={styles.card}>createStyles Demo</div>
      {/* The theme object contains all token and theme information */}
      <div>Current theme mode: {theme.appearance}</div>
    </div>
  );
};

CHANGELOG

Details: CHANGELOG

License

MIT

More Repositories

1

ant-design

An enterprise-class UI design language and React UI library
TypeScript
91,344
star
2

ant-design-pro

๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป Use Ant Design like a Pro!
TypeScript
36,376
star
3

ant-design-mobile

Essential UI blocks for building mobile web apps.
TypeScript
11,641
star
4

ant-design-landing

๐Ÿšต Landing Pages of Ant Design System
JavaScript
6,169
star
5

ant-motion

๐Ÿšด Animate specification and components of Ant Design
JavaScript
4,587
star
6

pro-components

๐Ÿ† Use Ant Design like a Pro!
TypeScript
4,246
star
7

ant-design-mobile-rn

Ant Design for React Native
TypeScript
3,036
star
8

ant-design-charts

A React Chart Library
JavaScript
1,922
star
9

ant-ux

๐ŸŽธ A sitemap template for ux design
JavaScript
1,144
star
10

antd-mobile-samples

antd-mobile samples
HTML
1,144
star
11

ant-design-pro-layout

๐ŸŒƒ Powerful and easy to use beautiful layout
TypeScript
1,000
star
12

ant-design-icons

โญ Ant Design SVG Icons
TypeScript
948
star
13

ant-design-web3

๐Ÿฅณ Efficient react components for building dapps easier | Connect crypto wallets and more Web3 UI components | Web3 icons | Supports Ethereum, Solana, Bitcoin, TON, Sui and others.
TypeScript
844
star
14

antd-init

๐Ÿ”ฐ Ant Design boilerplate generator.
JavaScript
815
star
15

pro-blocks

Blocks of Ant Design Pro.
TypeScript
714
star
16

pro-chat

๐Ÿค– Components Library for Quickly Building LLM Chat Interfaces.
TypeScript
710
star
17

ant-design-colors

๐ŸŽจ Color Palettes Calculator of Ant Design
TypeScript
635
star
18

create-react-app-antd

Use antd in create-react-app without ejecting โœจ
JavaScript
583
star
19

pro-table

๐Ÿ† Use Ant Design Table like a Pro!
TypeScript
560
star
20

sunflower

๐Ÿฆน Process components for antd4 & antd3 by alipay industry technology
TypeScript
499
star
21

ant-design-dark-theme

๐ŸŒš Dark theme variables of Ant Design
TypeScript
482
star
22

react-tutorial

ๅŸบไบŽ umi ็š„ Ant Design ๅฎžๆˆ˜ๆ•™็จ‹้…ๅฅ—ไปฃ็  https://www.yuque.com/ant-design/course
JavaScript
434
star
23

ant-design-mini

Ant Design for Alipay Mini Program
TypeScript
420
star
24

antd-tools

๐Ÿ”ง Cli Tools for Ant Design React
JavaScript
396
star
25

ant-design-pro-site

TypeScript
395
star
26

ant-design-aliyun-theme

โš™ Ant Design Theme for console.aliyun.com
TypeScript
307
star
27

antd-dayjs-webpack-plugin

โฐ Day.js webpack plugin for Ant Design
JavaScript
289
star
28

ant-design-pro-cli

Cli tool of Ant Design Pro
JavaScript
261
star
29

pro-flow

๐Ÿชข A React based Flow Framework, include Flow View and Flow Editor
TypeScript
259
star
30

cssinjs

TypeScript
240
star
31

pro-editor

๐Ÿ•น๏ธ The Ultimate Editor UI Framework and Components
TypeScript
207
star
32

intl-example

๐ŸŒ example about`antd`/`antd-mobile` internationalization
JavaScript
204
star
33

antd-sketchapp

โš›๏ธ๐Ÿ’Ž๐Ÿœ Render Ant Design components to Sketch.
HTML
201
star
34

html2sketch

parser HTML to Sketch JSON
TypeScript
162
star
35

scaffold-market

Scaffolds market for single page application
JavaScript
129
star
36

kitchen

Powerful sketch plugin for design cooperation ๐Ÿณ๐Ÿณ๐Ÿณ
125
star
37

ant-design-mobile-chart

Ant Design Mobile Chart based on F2
JavaScript
103
star
38

codemod-v4

codemod cli for antd v4 upgrade
JavaScript
94
star
39

compatible

TypeScript
89
star
40

ant-bot

JavaScript
78
star
41

antd-library

Axure library for Ant Design
HTML
76
star
42

parcel-antd

Use antd with parcel
TypeScript
75
star
43

v2.preview.pro.ant.design

v2.preview.pro.ant.design
JavaScript
73
star
44

antd-token-previewer

TypeScript
71
star
45

antd-mobile-pro

๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป Use Antd Mobile like a Pro!
TypeScript
52
star
46

ant-design-blocks

umi blocks of Ant Design.
TypeScript
50
star
47

antd-mobile-icons-v2

svg icons for ant-design-mobile
45
star
48

antd-issue-helper

TypeScript
42
star
49

antd-migration-helper

CLI tool to aid in migrate antd from old version to newer version.
JavaScript
41
star
50

u.ant.design

URL shortener.
JavaScript
35
star
51

antd-mobile-template

umijs@4 and antd-mobile@5 quick start project, You can click the `use template` to quickly create your own app.
TypeScript
34
star
52

editable-table

JavaScript
33
star
53

bisheng-plugin-antd

To support ant.design-like websites.
JavaScript
33
star
54

pro-list

ๆขฆๆƒณ่ขซ antd ๅ†…็ฝฎ็š„ๅŸบไบŽ antd ไฟฎๆ”น็š„ list
TypeScript
30
star
55

antd-color-editor

๐ŸŽจ an open-source color editor for designing color system
TypeScript
29
star
56

functional-mini

TypeScript
28
star
57

sketch-json-api

๐Ÿ’Ž๐Ÿ”ง Node.js Library for Editing Sketch Files.
TypeScript
26
star
58

HiTu

TypeScript
26
star
59

examples

More complex demo using antd
JavaScript
25
star
60

static-style-extract

TypeScript
24
star
61

doc

antd ๆŠ€ๆœฏๆ ˆ็š„ๆ‰€ๆœ‰ๆ–‡ๆกฃ๏ผŒ็”จไบŽๅš AI ๅŠŸ่ƒฝ
JavaScript
21
star
62

antd-codemod

antd codemod scripts.
JavaScript
20
star
63

happy-work-theme

TypeScript
17
star
64

use-emotion-css

A gadget that combines emotion and antd token
TypeScript
17
star
65

codemod-v5

codemod cli for antd v5 upgrade
JavaScript
17
star
66

ant-design-landing-build

JavaScript
16
star
67

antd-changelog-editor

Ant Design Changelog Editor
TypeScript
14
star
68

antd-vsce

ant design ็š„ vscode ๆ’ไปถ
TypeScript
13
star
69

next-pro-components

ไธ‹ไธ€ไธช็‰ˆๆœฌ็š„ pro-components
HTML
13
star
70

antd-theme

CSS
10
star
71

antd-adapter

An adapter which makes newer antd works like old one. DIRTY HACK \ T^T /
JavaScript
9
star
72

sketch-assistant-ant-design

TypeScript
9
star
73

ant-design-analysis

bundle size analysis of ant-design-mobile
HTML
8
star
74

fast-color

TypeScript
8
star
75

antd-mobile-icons

The icon set for antd-mobile.
JavaScript
7
star
76

.github

6
star
77

nextjs-registry

Style registry of Ant Design for Nextjs
TypeScript
6
star
78

beta.pro.ant.design

beta for pro scaffold
HTML
6
star
79

2x.ant.design

[email protected] site
HTML
6
star
80

1x.ant.design

[email protected] site http://1x.ant.design
HTML
5
star
81

010x.ant.design

[email protected] site
HTML
5
star
82

ant-design-web3-demo

A demo for Ant Design Web3 course.
TypeScript
5
star
83

1x.mobile.ant.design

[email protected] site, http://1x.mobile.ant.design
HTML
4
star
84

v2.pro.ant.design

https://v2-pro.ant.design/index-cn v2 version
HTML
4
star
85

next.mobile.ant.design

This is the documentation site for antd-mobile v5.
4
star
86

beta.preview.pro.ant.design

ant.design.pro ็š„ beta ้ข„่งˆ
JavaScript
4
star
87

3x.ant.design

HTML
4
star
88

012x.ant.design

[email protected] site http://012x.ant.design
HTML
3
star
89

07x.mobile.ant.design

[email protected] site
3
star
90

011x.ant.design

[email protected] site http://011x.ant.design
HTML
3
star
91

v1.pro.ant.design

ant design pro document
CSS
3
star
92

08x.mobile.ant.design

[email protected] site
HTML
3
star
93

03x.pro.ant.design

Document for ant design pro 0.3.x
HTML
3
star
94

09x.mobile.ant.design

[email protected] site
HTML
3
star
95

2x.rn.mobile.ant.design

http://2x.rn.mobile.ant.design/
HTML
3
star
96

pro-chat-next

TypeScript
2
star
97

09x.ant.design

document of [email protected]
JavaScript
2
star
98

v1.preview.pro.ant.design

ant design pro v1 preview
JavaScript
2
star
99

beta.mobile.ant.design

No longer use, please visitor:
HTML
2
star
100

v5.ant-design-pro-site

TypeScript
2
star