{"id":16370624,"url":"https://github.com/iq-tech/blueberry","last_synced_at":"2025-07-22T13:03:16.209Z","repository":{"id":39881299,"uuid":"392462452","full_name":"IQ-tech/blueberry","owner":"IQ-tech","description":"iq Blueberry design system","archived":false,"fork":false,"pushed_at":"2024-11-26T18:47:07.000Z","size":12955,"stargazers_count":18,"open_issues_count":0,"forks_count":1,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-06-22T21:42:39.806Z","etag":null,"topics":["css","javascript","react","storybook","stylus","typescript"],"latest_commit_sha":null,"homepage":"https://iq-tech.github.io/blueberry/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/IQ-tech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-08-03T21:35:48.000Z","updated_at":"2024-11-26T18:45:01.000Z","dependencies_parsed_at":"2024-03-11T16:30:09.558Z","dependency_job_id":"189f2f62-04df-4e9b-847b-84cbbf37a943","html_url":"https://github.com/IQ-tech/blueberry","commit_stats":{"total_commits":556,"total_committers":22,"mean_commits":"25.272727272727273","dds":0.5071942446043165,"last_synced_commit":"51c8096823eaad9c78918716211a6d9c222a606a"},"previous_names":[],"tags_count":88,"template":false,"template_full_name":null,"purl":"pkg:github/IQ-tech/blueberry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IQ-tech%2Fblueberry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IQ-tech%2Fblueberry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IQ-tech%2Fblueberry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IQ-tech%2Fblueberry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IQ-tech","download_url":"https://codeload.github.com/IQ-tech/blueberry/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IQ-tech%2Fblueberry/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266499015,"owners_count":23938771,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","javascript","react","storybook","stylus","typescript"],"created_at":"2024-10-11T03:05:34.054Z","updated_at":"2025-07-22T13:03:16.126Z","avatar_url":"https://github.com/IQ-tech.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Iq Blueberry Design System\n\nThe Iq Design System (Blueberry) came to bring a series of benefits and to solve common problems in the Iq development workflow.\n\n### The main benefits are:\n\n- Keep visual consistency between components, pages and projects\n- Create easily maintainable components\n- Develop a common language between Design and Front-end teams\n- Single source of truth to style code\n- Share code between Iq applications\n- Faster development of pages and features (keeping quality and isolation of code)\n- Using css as base, the consumer applications can use almost any technology or framework such as React and css-in-js libraries\n\n### Detailing the main workflow problems to be solved:\n\n- Code rewriting\n  - There are lots of React components already coded, but they are hard to modify and to be found in the codebase\n  - 100% of the code is rewritten on different applications that use different technologies (Ex: React, Pug), with the design system we can share style (css) code\n  - Some visual rules are rewritten every new layout, such as paddings, containers, alignment...\n- Inconsistent layouts and components\n  - Layout breaking on specific breakpoints\n  - Pages and components with old styles that doesn't reflect the current state of the product\n  - Non standard styles and animations\n\n---\n\n## Understanding blueberry\n\n### What is a framework agnostic design system?\n\nIt's an organized collection of reusable components, rules, and standards that help building applications in a convenient way - keeping the brand's visual identity. Since it's framework-agnostic, this library is independent of any framework, meaning that teams can use the components no matter what framework is used. This DS is developed in [Storybook](https://storybook.js.org/).\n\n### Design Tokens\n\nThey are Design System's values (or variables) created to name and reuse important information. Example: `blueberry-60`is a design token that stores the color `#453AD3`.\n\n### Developing new components\n\n1. Go to `src/flavors/react/components` and create a folder inside it for your component\n2. Create the following files:\n   - `YourComponent.stories.tsx`: to index your component's page in Storybook\n   - `index.tsx`: your component's structure\n3. On `src/core/components`create a style file for your component, such as `YourComponent.styl`\n\n---\n\n## Running the project\n\n### Installation\n\nInstall all dependencies:\n\n```\nyarn\n```\n\nThen you run:\n\n```\nyarn dev:react\n```\n\nThe port `localhost:6006` is automatically opened.\n\n### Scripts\n\n_Builds_\n\n- `yarn build-storybook:react`\n- `yarn build-storybook`\n- `yarn build:lib`\n\n_Others_\n\n- `yarn register-icons` (to add a new icon)\n- `yarn only-bundle`\n\n---\n\n### Main Tech Stack\n\n- [React](https://pt-br.reactjs.org/)\n- [TypeScript](https://www.typescriptlang.org/)\n- [Stylus](https://stylus-lang.com/)\n- Pug (will be deprecated soon)\n- Yarn\n- Babel\n- Gatsby\n\n### Environment\n\n- Prod: `https://iq-tech.github.io/blueberry/`\n\n### Slack channel\n\n#iq-design-system\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiq-tech%2Fblueberry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiq-tech%2Fblueberry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiq-tech%2Fblueberry/lists"}